├── .gitattributes ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── BREAKING_CHANGES.md ├── CONTRIBUTING.md ├── ChameleonForms.AcceptanceTests ├── ChameleonForms.AcceptanceTests.csproj ├── Helpers │ ├── HtmlHelpers.cs │ ├── HttpClientExtensions.cs │ ├── HttpPostCaptureDelegatingHandler.cs │ ├── ObjectMother.cs │ ├── Pages │ │ ├── ChameleonFormsPage.cs │ │ ├── ChangingContextPage.cs │ │ ├── Fields │ │ │ ├── BinaryInputField.cs │ │ │ ├── FieldFactory.cs │ │ │ ├── IField.cs │ │ │ ├── MultipleFields.cs │ │ │ ├── SelectField.cs │ │ │ └── TextInputField.cs │ │ ├── ModelBindingExamplePage.cs │ │ ├── ModelFieldType.cs │ │ ├── ModelFieldValue.cs │ │ └── PropertyExtensions.cs │ └── ViewModelEqualsConstraint.cs ├── IntegrationTests │ ├── ChangingContextTests.cs │ ├── ModelBindingTests.cs │ ├── PartialForTests.Should_render_correctly_when_used_via_form_or_section_and_when_used_for_top_level_property_or_sub_property.approved.html │ ├── PartialForTests.Should_render_correctly_when_used_via_form_or_section_and_when_used_for_top_level_property_or_sub_property_via_tag_helpers.approved.html │ ├── PartialForTests.cs │ ├── StringExtensions.cs │ ├── TagHelperTests.Should_render_correctly.approved.html │ └── TagHelperTests.cs ├── Properties │ └── launchSettings.json └── xunit.runner.json ├── ChameleonForms.Core ├── ChameleonForms.Core.csproj ├── Component │ ├── ButtonHtmlAttributes.cs │ ├── Config │ │ ├── FieldConfiguration.cs │ │ ├── FieldConfigurationExtensions.cs │ │ └── ReadonlyFieldConfiguration.cs │ └── FieldParent.cs ├── Enums │ ├── DisplayType.cs │ ├── EncType.cs │ ├── MessageType.cs │ └── TextInputType.cs ├── Extensions.cs ├── FieldGenerators │ ├── Handlers │ │ └── IFieldGeneratorHandler.cs │ └── IFieldGenerator.cs ├── HtmlAttributes.cs ├── HtmlContentExtensions.cs ├── LazyHtmlAttributes.cs └── Templates │ ├── HtmlCreator.cs │ └── IFormTemplate.cs ├── ChameleonForms.Example ├── ChameleonForms.Example.csproj ├── Controllers │ ├── ComparisonController.cs │ ├── ExampleFormsController.cs │ ├── Filters │ │ └── FormTemplateFilter.cs │ └── HomeController.cs ├── Forms │ ├── Components │ │ └── RandomComponent.cs │ └── Templates │ │ └── RandomFormTemplate.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── Views │ ├── Comparison │ │ ├── ChameleonForms.cshtml │ │ ├── ChameleonFormsTH.cshtml │ │ ├── EditorTemplates.cshtml │ │ ├── EditorTemplates │ │ │ ├── Boolean.cshtml │ │ │ ├── Byte.cshtml │ │ │ ├── Collection.cshtml │ │ │ ├── Date.cshtml │ │ │ ├── DateTime.cshtml │ │ │ ├── Decimal.cshtml │ │ │ ├── EmailAddress.cshtml │ │ │ ├── HiddenInput.cshtml │ │ │ ├── HtmlInput.cshtml │ │ │ ├── Int32.cshtml │ │ │ ├── Int64.cshtml │ │ │ ├── MembershipType.cshtml │ │ │ ├── MultilineText.cshtml │ │ │ ├── Number.cshtml │ │ │ ├── Object.cshtml │ │ │ ├── Password.cshtml │ │ │ ├── PhoneNumber.cshtml │ │ │ ├── SByte.cshtml │ │ │ ├── Single.cshtml │ │ │ ├── String.cshtml │ │ │ ├── Text.cshtml │ │ │ ├── Time.cshtml │ │ │ ├── UInt32.cshtml │ │ │ ├── UInt64.cshtml │ │ │ ├── Url.cshtml │ │ │ ├── ViewDataDictionaryExtensions.cs │ │ │ └── _Layout.cshtml │ │ ├── HtmlExtensions.cs │ │ ├── HtmlHelpers.cshtml │ │ └── TagHelpers.cshtml │ ├── ExampleForms │ │ ├── BasicExample.cshtml │ │ ├── Buttons.cshtml │ │ ├── ButtonsTH.cshtml │ │ ├── ChangingContext.cshtml │ │ ├── ChangingContextTH.cshtml │ │ ├── Form1.cshtml │ │ ├── Form2.cshtml │ │ ├── Labels.cshtml │ │ ├── ModelBindingExample.cshtml │ │ ├── NullList.cshtml │ │ ├── NullModel.cshtml │ │ ├── NullModelWithList.cshtml │ │ ├── Partials.cshtml │ │ ├── PartialsTH.cshtml │ │ ├── _BaseChildPartial.cshtml │ │ ├── _BaseChildPartialTH.cshtml │ │ ├── _BaseParentPartial.cshtml │ │ ├── _BaseParentPartialTH.cshtml │ │ ├── _Child.cshtml │ │ ├── _Child2.cshtml │ │ ├── _ChildPartial.cshtml │ │ ├── _ChildPartialTH.cshtml │ │ ├── _FormAgainstChildProperty.cshtml │ │ ├── _FormAgainstDifferentModel.cshtml │ │ ├── _FormPartialAgainstChildProperty.cshtml │ │ ├── _OtherForm.cshtml │ │ ├── _ParentPartial.cshtml │ │ └── _ParentPartialTH.cshtml │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── _Bootstrap3Layout.cshtml │ │ ├── _Bootstrap3LayoutWithoutJQuery.cshtml │ │ ├── _Layout.cshtml │ │ └── _LayoutWithoutJQuery.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── web.config └── wwwroot │ ├── css │ └── styles.css │ └── lib │ ├── aspnetvalidation │ ├── LICENSE.txt │ ├── aspnet-validation.css │ ├── aspnet-validation.js │ ├── aspnet-validation.min.js │ └── aspnet-validation.min.js.map │ ├── bootstrap-native │ ├── LICENSE │ └── dist │ │ ├── bootstrap-native-v4.js │ │ ├── bootstrap-native-v4.min.js │ │ ├── bootstrap-native.js │ │ ├── bootstrap-native.min.js │ │ ├── polyfill.js │ │ └── polyfill.min.js │ ├── bootstrap3 │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ ├── bootstrap4 │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── chameleonforms │ ├── chameleonforms-twitterbootstrap3.css │ ├── unobtrusive-date-validation.chameleonforms.js │ └── unobtrusive-twitterbootstrap3-validation.chameleonforms.js │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── ChameleonForms.Templates ├── ChameleonForms.Templates.csproj ├── ChameleonFormsDefaultTemplate │ ├── BeginMessage.cshtml │ ├── BeginNavigation.cshtml │ ├── BeginNestedSection.cshtml │ ├── BeginSection.cshtml │ ├── EndField.cshtml │ ├── EndForm.cshtml │ ├── EndMessage.cshtml │ ├── EndNavigation.cshtml │ ├── EndNestedSection.cshtml │ ├── EndSection.cshtml │ ├── Field.cshtml │ ├── GetAppendedHtml.cshtml │ ├── GetHint.cshtml │ ├── GetPrependedHtml.cshtml │ ├── MessageParagraph.cshtml │ ├── Params │ │ ├── BeginSectionParams.cs │ │ ├── FieldConfigurationParams.cs │ │ ├── FieldParams.cs │ │ ├── ListParams.cs │ │ ├── MessageParagraphParams.cs │ │ └── MessageParams.cs │ ├── RadioOrCheckboxList.cshtml │ └── RequiredDesignator.cshtml ├── ChameleonFormsTwitterBootstrap3Template │ ├── BeginMessage.cshtml │ ├── BeginNavigation.cshtml │ ├── BeginNestedSection.cshtml │ ├── BeginSection.cshtml │ ├── EndField.cshtml │ ├── EndForm.cshtml │ ├── EndMessage.cshtml │ ├── EndNavigation.cshtml │ ├── EndNestedSection.cshtml │ ├── EndSection.cshtml │ ├── Field.cshtml │ ├── GetAppendedHtml.cshtml │ ├── GetHint.cshtml │ ├── GetLabelHtml.cshtml │ ├── GetPrependedHtml.cshtml │ ├── MessageParagraph.cshtml │ ├── Params │ │ ├── BeginSectionParams.cs │ │ ├── FieldConfigurationParams.cs │ │ ├── FieldParams.cs │ │ ├── LabelParams.cs │ │ ├── ListParams.cs │ │ ├── MessageParagraphParams.cs │ │ └── MessageParams.cs │ ├── RadioOrCheckboxList.cshtml │ └── RequiredDesignator.cshtml ├── Default │ └── DefaultFormTemplate.cs ├── Properties │ └── launchSettings.json └── TwitterBootstrap3 │ ├── ButtonHtmlAttributesExtensions.cs │ ├── ButtonSize.cs │ ├── EmphasisStyle.cs │ ├── FieldConfigurationExtensions.cs │ └── TwitterBootstrap3FormTemplate.cs ├── ChameleonForms.Tests ├── App.config ├── Attributes │ └── ExistsInAttributeTests.cs ├── ChameleonForms.Tests.csproj ├── Component │ └── Config │ │ ├── FieldConfigurationShould.Proxy_html_attributes.approved.html │ │ ├── FieldConfigurationShould.Set_autofocus_attribute.approved.html │ │ ├── FieldConfigurationShould.Set_disabled_attribute.approved.html │ │ ├── FieldConfigurationShould.Set_id_attribute.approved.html │ │ ├── FieldConfigurationShould.Set_numeric_field_attributes_decimal.approved.html │ │ ├── FieldConfigurationShould.Set_numeric_field_attributes_long.approved.html │ │ ├── FieldConfigurationShould.Set_numeric_field_attributes_string.approved.html │ │ ├── FieldConfigurationShould.Set_placeholder_attribute.approved.html │ │ ├── FieldConfigurationShould.Set_readonly_attribute.approved.html │ │ ├── FieldConfigurationShould.Set_tabindex_attribute.approved.html │ │ ├── FieldConfigurationShould.Set_textarea_attributes.approved.html │ │ └── FieldConfigurationTests.cs ├── ExtensionsShould.Create_populated_html_attributes_object_from_html_helper.approved.html ├── ExtensionsTests.cs ├── FieldGenerator │ ├── DefaultFieldGenerator │ │ ├── BooleanTests.Use_correct_html_for_boolean_dropdown_list_and_false_value.approved.html │ │ ├── BooleanTests.Use_correct_html_for_boolean_dropdown_list_and_true_value.approved.html │ │ ├── BooleanTests.Use_correct_html_for_boolean_list_and_custom_labels.approved.html │ │ ├── BooleanTests.Use_correct_html_for_boolean_list_and_false_value.approved.html │ │ ├── BooleanTests.Use_correct_html_for_boolean_list_and_true_value.approved.html │ │ ├── BooleanTests.Use_correct_html_for_boolean_list_with_label_wrapping_element.approved.html │ │ ├── BooleanTests.Use_correct_html_for_checked_single_checkbox_with_default_label.approved.html │ │ ├── BooleanTests.Use_correct_html_for_label_for_boolean_checkbox.approved.html │ │ ├── BooleanTests.Use_correct_html_for_label_for_boolean_dropdown.approved.html │ │ ├── BooleanTests.Use_correct_html_for_label_for_boolean_list.approved.html │ │ ├── BooleanTests.Use_correct_html_for_label_for_boolean_list_with_overridden_label.approved.html │ │ ├── BooleanTests.Use_correct_html_for_nullable_required_boolean_checkbox_with_no_value.approved.html │ │ ├── BooleanTests.Use_correct_html_for_nullable_required_boolean_dropdown_with_no_value.approved.html │ │ ├── BooleanTests.Use_correct_html_for_nullable_required_boolean_list_with_no_value.approved.html │ │ ├── BooleanTests.Use_correct_html_for_optional_boolean_and_no_value.approved.html │ │ ├── BooleanTests.Use_correct_html_for_optional_boolean_dropdown_and_no_value.approved.html │ │ ├── BooleanTests.Use_correct_html_for_optional_boolean_list_and_no_value.approved.html │ │ ├── BooleanTests.Use_correct_html_for_single_checkbox_with_custom_label.approved.html │ │ ├── BooleanTests.Use_correct_html_for_single_checkbox_with_default_label.approved.html │ │ ├── BooleanTests.Use_correct_html_for_single_checkbox_with_label_wrapping_element.approved.html │ │ ├── BooleanTests.Use_correct_html_for_without_inline_label_for_boolean_checkbox.approved.html │ │ ├── BooleanTests.cs │ │ ├── DateTimeTests.Use_correct_html_for_datetime_field.approved.html │ │ ├── DateTimeTests.Use_correct_html_for_datetime_field_with_format.approved.html │ │ ├── DateTimeTests.Use_correct_html_for_datetime_field_with_g_format_en_gb.approved.html │ │ ├── DateTimeTests.Use_correct_html_for_datetime_field_with_g_format_uk_ua.approved.html │ │ ├── DateTimeTests.Use_correct_html_for_nullable_datetime_field.approved.html │ │ ├── DateTimeTests.Use_correct_html_for_nullable_datetime_field_with_format.approved.html │ │ ├── DateTimeTests.cs │ │ ├── EnumTests.Use_correct_html_for_child_viewmodel_enum_list_field.approved.html │ │ ├── EnumTests.Use_correct_html_for_dropdown_optional_nullable_enum_list_field.approved.html │ │ ├── EnumTests.Use_correct_html_for_enum_list_with_excluded_value.approved.html │ │ ├── EnumTests.Use_correct_html_for_label_for_enum_dropdown.approved.html │ │ ├── EnumTests.Use_correct_html_for_label_for_enum_list.approved.html │ │ ├── EnumTests.Use_correct_html_for_label_for_enum_list_with_overridden_label.approved.html │ │ ├── EnumTests.Use_correct_html_for_nullable_required_enum_field.approved.html │ │ ├── EnumTests.Use_correct_html_for_optional_enum_field.approved.html │ │ ├── EnumTests.Use_correct_html_for_optional_enum_field_with_null_string_attribute.approved.html │ │ ├── EnumTests.Use_correct_html_for_optional_enum_field_with_overridden_null_string_attribute.approved.html │ │ ├── EnumTests.Use_correct_html_for_optional_enum_list_field.approved.html │ │ ├── EnumTests.Use_correct_html_for_optional_nullable_enum_list_field.approved.html │ │ ├── EnumTests.Use_correct_html_for_required_enum_field.approved.html │ │ ├── EnumTests.Use_correct_html_for_required_enum_list_field.approved.html │ │ ├── EnumTests.Use_correct_html_for_required_nullable_enum_list_field.approved.html │ │ ├── EnumTests.cs │ │ ├── FieldGeneratorTests.Use_correct_html_for_field_label_with_display_name.approved.html │ │ ├── FieldGeneratorTests.Use_correct_html_for_field_label_with_null_label.approved.html │ │ ├── FieldGeneratorTests.Use_correct_html_for_field_label_with_overridden_html_label.approved.html │ │ ├── FieldGeneratorTests.Use_correct_html_for_field_label_with_overridden_id.approved.html │ │ ├── FieldGeneratorTests.Use_correct_html_for_field_label_with_overridden_id_2.approved.html │ │ ├── FieldGeneratorTests.Use_correct_html_for_field_label_with_overridden_label.approved.html │ │ ├── FieldGeneratorTests.Use_correct_html_for_field_label_without_config.approved.html │ │ ├── FieldGeneratorTests.Use_correct_html_for_field_validation.approved.html │ │ ├── FieldGeneratorTests.Use_label_class_for_field_label_with_html_attributes_including_a_class.approved.html │ │ ├── FieldGeneratorTests.Use_label_class_for_field_validation_message_with_html_attributes_including_a_class.approved.html │ │ ├── FieldGeneratorTests.Use_overridden_html_for_field_if_provided.approved.html │ │ ├── FieldGeneratorTests.cs │ │ ├── FlagsEnumTests.Use_correct_html_for_child_viewmodel_enum_list_field.approved.html │ │ ├── FlagsEnumTests.Use_correct_html_for_enum_list_with_excluded_value.approved.html │ │ ├── FlagsEnumTests.Use_correct_html_for_label_for_enum_dropdown.approved.html │ │ ├── FlagsEnumTests.Use_correct_html_for_label_for_enum_list.approved.html │ │ ├── FlagsEnumTests.Use_correct_html_for_label_for_enum_list_with_overridden_label.approved.html │ │ ├── FlagsEnumTests.Use_correct_html_for_nullable_required_enum_field.approved.html │ │ ├── FlagsEnumTests.Use_correct_html_for_optional_enum_field.approved.html │ │ ├── FlagsEnumTests.Use_correct_html_for_optional_enum_field_with_null_string_attribute.approved.html │ │ ├── FlagsEnumTests.Use_correct_html_for_optional_enum_field_with_overridden_null_string_attribute.approved.html │ │ ├── FlagsEnumTests.Use_correct_html_for_required_enum_field.approved.html │ │ ├── FlagsEnumTests.cs │ │ ├── InputTests.Allow_type_to_be_overridden.approved.html │ │ ├── InputTests.Use_correct_html_for_email.approved.html │ │ ├── InputTests.Use_correct_html_for_file_upload.approved.html │ │ ├── InputTests.Use_correct_html_for_password_field.approved.html │ │ ├── InputTests.Use_correct_html_for_string_url.approved.html │ │ ├── InputTests.Use_correct_html_for_text_field.approved.html │ │ ├── InputTests.Use_correct_html_for_text_field_with_value.approved.html │ │ ├── InputTests.Use_correct_html_for_textarea.approved.html │ │ ├── InputTests.Use_correct_html_for_textarea_with_overriden_cols_and_rows.approved.html │ │ ├── InputTests.Use_correct_html_for_uri_url.approved.html │ │ ├── InputTests.cs │ │ ├── ListTests.Not_throw_exception_when_model_containing_list_property_is_null.approved.html │ │ ├── ListTests.Use_correct_html_for_int_list_id.received.html │ │ ├── ListTests.Use_correct_html_for_label_for_list_as_dropdown.approved.html │ │ ├── ListTests.Use_correct_html_for_label_for_list_as_list.approved.html │ │ ├── ListTests.Use_correct_html_for_label_for_list_as_list_with_overridden_label.approved.html │ │ ├── ListTests.Use_correct_html_for_null_required_string_list_id_as_list.approved.html │ │ ├── ListTests.Use_correct_html_for_optional_int_list_id.approved.html │ │ ├── ListTests.Use_correct_html_for_optional_int_list_id_as_list.approved.html │ │ ├── ListTests.Use_correct_html_for_optional_int_list_id_with_none_string_override.approved.html │ │ ├── ListTests.Use_correct_html_for_optional_int_list_ids.approved.html │ │ ├── ListTests.Use_correct_html_for_optional_int_list_ids_as_list.approved.html │ │ ├── ListTests.Use_correct_html_for_optional_int_list_ids_with_empty_item_hidden.approved.html │ │ ├── ListTests.Use_correct_html_for_optional_nullable_int_list_ids.approved.html │ │ ├── ListTests.Use_correct_html_for_optional_nullable_int_list_ids_as_list.approved.html │ │ ├── ListTests.Use_correct_html_for_optional_string_list_id_as_list.approved.html │ │ ├── ListTests.Use_correct_html_for_optional_string_list_id_as_list_with_none_string_override.approved.html │ │ ├── ListTests.Use_correct_html_for_optional_string_list_id_with_empty_item_hidden.approved.html │ │ ├── ListTests.Use_correct_html_for_required_int_list_id.approved.html │ │ ├── ListTests.Use_correct_html_for_required_int_list_ids.approved.html │ │ ├── ListTests.Use_correct_html_for_required_int_list_ids_as_list.approved.html │ │ ├── ListTests.Use_correct_html_for_required_nullable_int_list_id.approved.html │ │ ├── ListTests.Use_correct_html_for_required_nullable_int_list_ids.approved.html │ │ ├── ListTests.Use_correct_html_for_required_string_list_id_as_list.approved.html │ │ ├── ListTests.cs │ │ ├── NumberTests.Return_correct_html_for_byte_field.approved.html │ │ ├── NumberTests.Return_correct_html_for_byte_field_with_overidden_step_min_and_max.approved.html │ │ ├── NumberTests.Return_correct_html_for_currency_field.approved.html │ │ ├── NumberTests.Return_correct_html_for_decimal_field.approved.html │ │ ├── NumberTests.Return_correct_html_for_decimal_with_range_field.approved.html │ │ ├── NumberTests.Return_correct_html_for_double_field.approved.html │ │ ├── NumberTests.Return_correct_html_for_float_field.approved.html │ │ ├── NumberTests.Return_correct_html_for_int_field.approved.html │ │ ├── NumberTests.Return_correct_html_for_int_with_range_field.approved.html │ │ ├── NumberTests.Return_correct_html_for_long_field.approved.html │ │ ├── NumberTests.Return_correct_html_for_nullable_int_field.approved.html │ │ ├── NumberTests.Return_correct_html_for_sbyte_field.approved.html │ │ ├── NumberTests.Return_correct_html_for_short_field.approved.html │ │ ├── NumberTests.Return_correct_html_for_uint_field.approved.html │ │ ├── NumberTests.Return_correct_html_for_ulong_field.approved.html │ │ ├── NumberTests.Return_correct_html_for_ushort_field.approved.html │ │ ├── NumberTests.Use_correct_html_for_decimal_field_with_explicit_format_string.approved.html │ │ ├── NumberTests.Use_correct_html_for_decimal_field_with_format_string_attribute.approved.html │ │ ├── NumberTests.Use_correct_html_for_decimal_field_with_format_string_attribute_but_overriden.approved.html │ │ └── NumberTests.cs │ ├── DefaultFieldGeneratorTests.cs │ └── Handlers │ │ ├── BooleanHandlerTests.cs │ │ ├── DateTimeHandlerTests.cs │ │ ├── DefaultHandlerTests.cs │ │ ├── EnumListHandlerTests.cs │ │ ├── FieldGeneratorHandlerTest.cs │ │ ├── ListHandlerTests.cs │ │ ├── NumberHandlerTest.cs │ │ ├── PasswordHandlerTests.cs │ │ └── TextAreaHandlerTests.cs ├── Form │ ├── FormIntegrationTests.cs │ ├── IntegratedFormShould.Output_field_html_with_field_configuration_values.approved.html │ ├── IntegratedFormShould.Output_field_with_hint_using_default_template.approved.html │ ├── IntegratedFormShould.Output_label_html_with_field_configuration_values.approved.html │ ├── IntegratedFormShould.Output_optional_field_using_default_template.approved.html │ └── IntegratedFormShould.Output_required_field_using_default_template.approved.html ├── FormTests.cs ├── Helpers │ ├── ChangeCulture.cs │ ├── DefaultCompositeMetadataDetailsProvider.cs │ └── MvcTestContext.cs ├── HtmlAttributesTests.cs ├── HtmlHelperExtensionsTests.cs ├── HumanizedLabelsTests.cs ├── LazyHtmlAttributesTests.cs ├── ModelBinders │ ├── DateTimeModelBinderTests │ │ ├── DateTimeModelBinderShould.cs │ │ └── TestViewModel.cs │ ├── EnumListModelBinderTests │ │ ├── GivenEmptySubmission.cs │ │ ├── GivenInvalidMultipleSubmission.cs │ │ ├── GivenInvalidSingleSubmission.cs │ │ ├── GivenNoSubmission.cs │ │ ├── GivenValidMultipleSubmission.cs │ │ ├── GivenValidMultipleSubmissionWithEmptyValue.cs │ │ ├── GivenValidSingleSubmission.cs │ │ └── TestViewModel.cs │ ├── FlagsEnumModelBinderTests │ │ ├── FlagsEnumModelBinderShould.cs │ │ └── TestViewModel.cs │ ├── ModelBinderTestBase.cs │ └── UriModelBinderTests │ │ ├── TestViewModel.cs │ │ └── UriModelBinderShould.cs ├── Properties │ └── launchSettings.json ├── PublicApiTests.ChameleonFormsPublicApi_ShouldNotChange_WithoutApproval.approved.txt ├── PublicApiTests.cs ├── Scripts │ ├── ManuallyRunSpecs.html │ ├── chutzpah.json │ ├── fixtures │ │ └── DateTimeValidationFixtures.js │ ├── lib │ │ ├── data-driven.js │ │ └── jasmine-2.0.0 │ │ │ ├── boot.js │ │ │ ├── console.js │ │ │ ├── jasmine-html.js │ │ │ ├── jasmine.css │ │ │ ├── jasmine.js │ │ │ └── jasmine_favicon.png │ └── spec │ │ └── DateTimeValidationSpec.js ├── Templates │ ├── Default │ │ ├── DefaultFormTemplateShould.Allow_for_name_to_be_specified_but_id_to_be_overwritten_when_creating_a_button.approved.html │ │ ├── DefaultFormTemplateShould.Begin_form_with_enctype.approved.html │ │ ├── DefaultFormTemplateShould.Begin_form_without_enctype.approved.html │ │ ├── DefaultFormTemplateShould.Begin_nested_section.approved.html │ │ ├── DefaultFormTemplateShould.Begin_nested_section_without_leading_html_or_heading.approved.html │ │ ├── DefaultFormTemplateShould.Begin_section.approved.html │ │ ├── DefaultFormTemplateShould.Begin_section_without_leading_html_or_heading.approved.html │ │ ├── DefaultFormTemplateShould.End_form.approved.html │ │ ├── DefaultFormTemplateShould.End_nested_section.approved.html │ │ ├── DefaultFormTemplateShould.End_section.approved.html │ │ ├── DefaultFormTemplateShould.Output_begin_failure_message.approved.html │ │ ├── DefaultFormTemplateShould.Output_begin_field.approved.html │ │ ├── DefaultFormTemplateShould.Output_begin_information_message.approved.html │ │ ├── DefaultFormTemplateShould.Output_begin_information_message_without_heading.approved.html │ │ ├── DefaultFormTemplateShould.Output_begin_navigation.approved.html │ │ ├── DefaultFormTemplateShould.Output_button_input_when_button_with_no_content_specified.approved.html │ │ ├── DefaultFormTemplateShould.Output_button_when_button_with_content_specified.approved.html │ │ ├── DefaultFormTemplateShould.Output_end_field.approved.html │ │ ├── DefaultFormTemplateShould.Output_end_message.approved.html │ │ ├── DefaultFormTemplateShould.Output_end_navigation.approved.html │ │ ├── DefaultFormTemplateShould.Output_field.approved.html │ │ ├── DefaultFormTemplateShould.Output_field_with_container_class.approved.html │ │ ├── DefaultFormTemplateShould.Output_field_with_hint.approved.html │ │ ├── DefaultFormTemplateShould.Output_field_with_hint_id.approved.html │ │ ├── DefaultFormTemplateShould.Output_field_with_prepended_and_appended_html.approved.html │ │ ├── DefaultFormTemplateShould.Output_message_paragraph.approved.html │ │ ├── DefaultFormTemplateShould.Output_submit_button_when_button_with_content_and_submit_type_specified.approved.html │ │ ├── DefaultFormTemplateShould.Output_submit_input_when_button_with_no_content_and_submit_type_specified.approved.html │ │ └── DefaultFormTemplateTests.cs │ ├── HtmlCreatorShould.Generate_button_with_default_options.approved.html │ ├── HtmlCreatorShould.Generate_input.approved.html │ ├── HtmlCreatorShould.Generate_input_without_name.approved.html │ ├── HtmlCreatorShould.Generate_reset_button_with_html_content.approved.html │ ├── HtmlCreatorShould.Generate_submit_button_with_default_options.received.html │ ├── HtmlCreatorShould.Generate_submit_button_with_non_default_options.approved.html │ ├── HtmlCreatorTests.cs │ ├── OutputAttributesShould.Merge_attributes_from_multiple_objects.approved.html │ ├── OutputAttributesShould.Output_attributes_from_single_object.approved.html │ └── TwitterBootstrap3 │ │ ├── ButtonTests.Output_button_input_when_button_with_no_content_specified.approved.html │ │ ├── ButtonTests.Output_button_when_button_with_content_specified.approved.html │ │ ├── ButtonTests.Output_submit_button_when_button_with_content_and_submit_type_specified.approved.html │ │ ├── ButtonTests.Output_submit_button_with_non_default_style_or_size.approved.html │ │ ├── ButtonTests.Output_submit_input_when_button_with_no_content_and_submit_type_specified.approved.html │ │ ├── ButtonTests.cs │ │ ├── FieldTests.cs │ │ ├── FieldTests_TwitterBootstrapTemplateShould.Output_begin_field.approved.html │ │ ├── FieldTests_TwitterBootstrapTemplateShould.Output_checkbox_field_with_prepended_and_appended_html_when_required.approved.html │ │ ├── FieldTests_TwitterBootstrapTemplateShould.Output_end_field.approved.html │ │ ├── FieldTests_TwitterBootstrapTemplateShould.Output_field.approved.html │ │ ├── FieldTests_TwitterBootstrapTemplateShould.Output_field_with_container_class.approved.html │ │ ├── FieldTests_TwitterBootstrapTemplateShould.Output_field_with_hint.approved.html │ │ ├── FieldTests_TwitterBootstrapTemplateShould.Output_field_with_hint_id.approved.html │ │ ├── FieldTests_TwitterBootstrapTemplateShould.Output_field_with_prepended_and_appended_html.approved.html │ │ ├── FieldTests_TwitterBootstrapTemplateShould.Output_field_with_prepended_and_appended_html_when_allowed_input_group.approved.html │ │ ├── FieldTests_TwitterBootstrapTemplateShould.Output_field_with_prepended_and_appended_html_when_input_group.approved.html │ │ ├── FieldTests_TwitterBootstrapTemplateShould.Output_field_with_prepended_and_appended_html_when_required.approved.html │ │ ├── FieldTests_TwitterBootstrapTemplateShould.Output_radio_list_field_with_prepended_and_appended_html_when_required.approved.html │ │ ├── FormTests.cs │ │ ├── FormTests_TwitterBootstrapTemplateShould.Begin_form_with_enctype.approved.html │ │ ├── FormTests_TwitterBootstrapTemplateShould.Begin_form_without_enctype.approved.html │ │ ├── FormTests_TwitterBootstrapTemplateShould.End_form.approved.html │ │ ├── MessageTests.cs │ │ ├── MessageTests_TwitterBootstrapFormTemplateShould.Output_begin_failure_message.approved.html │ │ ├── MessageTests_TwitterBootstrapFormTemplateShould.Output_begin_information_message.approved.html │ │ ├── MessageTests_TwitterBootstrapFormTemplateShould.Output_begin_information_message_without_heading.approved.html │ │ ├── MessageTests_TwitterBootstrapFormTemplateShould.Output_end_message.approved.html │ │ ├── MessageTests_TwitterBootstrapFormTemplateShould.Output_message_paragraph.approved.html │ │ ├── NavigationTests.cs │ │ ├── NavigationTests_TwitterBootstrapFormTemplateShould.Output_begin_information_message.approved.html │ │ ├── NavigationTests_TwitterBootstrapFormTemplateShould.Output_begin_navigation.approved.html │ │ ├── NavigationTests_TwitterBootstrapFormTemplateShould.Output_end_navigation.approved.html │ │ ├── PrepareFieldConfigurationTests.cs │ │ ├── RadioListTests.cs │ │ ├── RadioListTests_TwitterBootstrapTemplateShould.Render_checkbox_list.approved.html │ │ ├── RadioListTests_TwitterBootstrapTemplateShould.Render_radio_list.approved.html │ │ ├── SectionTests.cs │ │ ├── SectionTests_TwitterBoostrapFormTemplateShould.End_section.received.html │ │ ├── SectionTests_TwitterBootstrapFormTemplateShould.Begin_nested_section.approved.html │ │ ├── SectionTests_TwitterBootstrapFormTemplateShould.Begin_nested_section_without_leading_html_or_heading.approved.html │ │ ├── SectionTests_TwitterBootstrapFormTemplateShould.Begin_section.approved.html │ │ ├── SectionTests_TwitterBootstrapFormTemplateShould.Begin_section_without_leading_html_or_heading.approved.html │ │ ├── SectionTests_TwitterBootstrapFormTemplateShould.End_nested_section.approved.html │ │ └── SectionTests_TwitterBootstrapFormTemplateShould.End_section.approved.html ├── TestStartup.cs └── coverlet.runsettings ├── ChameleonForms.nuspec ├── ChameleonForms.sln ├── ChameleonForms.sln.DotSettings ├── ChameleonForms ├── Attributes │ └── ExistsInAttribute.cs ├── ChameleonForms.csproj ├── Component │ ├── Field.cs │ ├── FormComponent.cs │ ├── Message.cs │ ├── Navigation.cs │ └── Section.cs ├── Config │ └── ChameleonFormsConfig.cs ├── Constants.cs ├── FieldGenerators │ ├── DefaultFieldGenerator.cs │ ├── FieldGeneratorExtensions.cs │ ├── FieldGeneratorHandlersRouter.cs │ └── Handlers │ │ ├── BooleanHandler.cs │ │ ├── DateTimeHandler.cs │ │ ├── DefaultHandler.cs │ │ ├── EnumListHandler.cs │ │ ├── FieldGeneratorHandler.cs │ │ ├── FileHandler.cs │ │ ├── ListHandler.cs │ │ ├── NumberHandler.cs │ │ ├── PasswordHandler.cs │ │ └── TextAreaHandler.cs ├── Form.cs ├── HtmlHelperExtensions.cs ├── HumanizedLabelsDisplayMetadataProvider.cs ├── Metadata │ ├── IModelMetadataAware.cs │ └── ModelMetadataAwareDisplayMetadataProvider.cs ├── ModelBinders │ ├── DateTimeModelBinder.cs │ ├── DateTimeModelBinderProvider.cs │ ├── EnumListModelBinder.cs │ ├── EnumListModelBinderProvider.cs │ ├── FlagsEnumModelBinder.cs │ ├── FlagsEnumModelBinderProvider.cs │ ├── UriModelBinder.cs │ └── UriModelBinderProvider.cs ├── PartialViewForm.cs ├── PartialViewSection.cs ├── Properties │ └── launchSettings.json ├── ReSharper │ └── ReSharperAnnotations.cs ├── ServiceCollectionExtensions.cs ├── TagHelpers │ ├── ChameleonFormTagHelper.cs │ ├── FieldConfigurationBaseTagHelper.cs │ ├── FieldConfigurationTagHelper.cs │ ├── FieldElementConfigurationTagHelper.cs │ ├── FieldElementTagHelper.cs │ ├── FieldLabelConfigurationTagHelper.cs │ ├── FieldLabelTagHelper.cs │ ├── FieldTagHelper.cs │ ├── FieldValidationConfigurationTagHelper.cs │ ├── FieldValidationTagHelper.cs │ ├── FormButtonTagHelper.cs │ ├── FormMessageTagHelper.cs │ ├── FormNavigationTagHelper.cs │ ├── FormPartialTagHelper.cs │ ├── FormSectionTagHelper.cs │ ├── HtmlAttributesTagHelper.cs │ ├── ManualFieldTagHelper.cs │ ├── MessageParagraphTagHelper.cs │ ├── ModelAwareTagHelper.cs │ ├── ModelPropertyTagHelper.cs │ ├── ResetButtonTagHelper.cs │ ├── SubmitButtonTagHelper.cs │ └── TagHelperContextExtensions.cs ├── Templates │ └── TwitterBootstrap3 │ │ └── ButtonTagHelper.cs ├── Utils │ ├── DisposableHtmlHelper.cs │ ├── ExpressionBuilder.cs │ ├── ExpressionExtensions.cs │ ├── SwapHtmlHelperWriter.cs │ └── ViewContextExtensions.cs ├── Validators │ ├── DateTimeClientModelValidatorProvider.cs │ └── IntegralNumericClientModelValidatorProvider.cs └── readme.txt ├── GitVersionConfig.yaml ├── LICENSE ├── README.md ├── docfx.json ├── docs ├── Diagrams.docx ├── account-signup-render.png ├── bg-gr-v.png ├── boolean.md ├── bootstrap-buttons.png ├── bootstrap-example-banner.png ├── bootstrap-template.md ├── chameleon.jpg ├── comparison.md ├── configuration.md ├── custom-field-generator-handlers.md ├── custom-field-generator.md ├── custom-template.md ├── datetime-client-side-validation.md ├── datetime.md ├── default-fields.md ├── different-form-models.md ├── email.md ├── enum.md ├── extending-field-configuration.md ├── extending-form-components.md ├── favicon.ico ├── field-configuration.md ├── field-element.md ├── field-label.md ├── field-validation-html.md ├── field.md ├── file-upload.md ├── flags-enum.md ├── form-templates.md ├── form.png ├── getting-started.md ├── html-attributes.md ├── html-helper-context.md ├── index.md ├── int-field-with-bootstrap-input-group.png ├── labels.md ├── list.md ├── logo-small.png ├── message.png ├── multiple-enum.md ├── multiple-list.md ├── navigation.png ├── number.md ├── partials.md ├── password.md ├── section.png ├── signup-example-render.png ├── templates │ └── chameleonforms │ │ ├── layout │ │ └── _master.tmpl │ │ ├── partials │ │ └── home.tmpl.partial │ │ └── styles │ │ ├── docfx.vendor.js │ │ ├── main.css │ │ └── main.js ├── textarea.md ├── the-form.md ├── the-message.md ├── the-navigation.md ├── the-section.md ├── toc.yml ├── uri.md └── why.md ├── index.md ├── logo.png ├── logo.svg └── toc.yml /.gitattributes: -------------------------------------------------------------------------------- 1 | # Disable LF normalization for all files 2 | * -text -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /BREAKING_CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/BREAKING_CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/ChameleonForms.AcceptanceTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/ChameleonForms.AcceptanceTests.csproj -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/Helpers/HtmlHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/Helpers/HtmlHelpers.cs -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/Helpers/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/Helpers/HttpClientExtensions.cs -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/Helpers/HttpPostCaptureDelegatingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/Helpers/HttpPostCaptureDelegatingHandler.cs -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/Helpers/ObjectMother.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/Helpers/ObjectMother.cs -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/Helpers/Pages/ChameleonFormsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/Helpers/Pages/ChameleonFormsPage.cs -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/Helpers/Pages/ChangingContextPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/Helpers/Pages/ChangingContextPage.cs -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/Helpers/Pages/Fields/BinaryInputField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/Helpers/Pages/Fields/BinaryInputField.cs -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/Helpers/Pages/Fields/FieldFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/Helpers/Pages/Fields/FieldFactory.cs -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/Helpers/Pages/Fields/IField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/Helpers/Pages/Fields/IField.cs -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/Helpers/Pages/Fields/MultipleFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/Helpers/Pages/Fields/MultipleFields.cs -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/Helpers/Pages/Fields/SelectField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/Helpers/Pages/Fields/SelectField.cs -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/Helpers/Pages/Fields/TextInputField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/Helpers/Pages/Fields/TextInputField.cs -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/Helpers/Pages/ModelBindingExamplePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/Helpers/Pages/ModelBindingExamplePage.cs -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/Helpers/Pages/ModelFieldType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/Helpers/Pages/ModelFieldType.cs -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/Helpers/Pages/ModelFieldValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/Helpers/Pages/ModelFieldValue.cs -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/Helpers/Pages/PropertyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/Helpers/Pages/PropertyExtensions.cs -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/Helpers/ViewModelEqualsConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/Helpers/ViewModelEqualsConstraint.cs -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/IntegrationTests/ChangingContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/IntegrationTests/ChangingContextTests.cs -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/IntegrationTests/ModelBindingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/IntegrationTests/ModelBindingTests.cs -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/IntegrationTests/PartialForTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/IntegrationTests/PartialForTests.cs -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/IntegrationTests/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/IntegrationTests/StringExtensions.cs -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/IntegrationTests/TagHelperTests.Should_render_correctly.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/IntegrationTests/TagHelperTests.Should_render_correctly.approved.html -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/IntegrationTests/TagHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/IntegrationTests/TagHelperTests.cs -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.AcceptanceTests/Properties/launchSettings.json -------------------------------------------------------------------------------- /ChameleonForms.AcceptanceTests/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "shadowCopy": false 3 | } 4 | -------------------------------------------------------------------------------- /ChameleonForms.Core/ChameleonForms.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Core/ChameleonForms.Core.csproj -------------------------------------------------------------------------------- /ChameleonForms.Core/Component/ButtonHtmlAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Core/Component/ButtonHtmlAttributes.cs -------------------------------------------------------------------------------- /ChameleonForms.Core/Component/Config/FieldConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Core/Component/Config/FieldConfiguration.cs -------------------------------------------------------------------------------- /ChameleonForms.Core/Component/Config/FieldConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Core/Component/Config/FieldConfigurationExtensions.cs -------------------------------------------------------------------------------- /ChameleonForms.Core/Component/Config/ReadonlyFieldConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Core/Component/Config/ReadonlyFieldConfiguration.cs -------------------------------------------------------------------------------- /ChameleonForms.Core/Component/FieldParent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Core/Component/FieldParent.cs -------------------------------------------------------------------------------- /ChameleonForms.Core/Enums/DisplayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Core/Enums/DisplayType.cs -------------------------------------------------------------------------------- /ChameleonForms.Core/Enums/EncType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Core/Enums/EncType.cs -------------------------------------------------------------------------------- /ChameleonForms.Core/Enums/MessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Core/Enums/MessageType.cs -------------------------------------------------------------------------------- /ChameleonForms.Core/Enums/TextInputType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Core/Enums/TextInputType.cs -------------------------------------------------------------------------------- /ChameleonForms.Core/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Core/Extensions.cs -------------------------------------------------------------------------------- /ChameleonForms.Core/FieldGenerators/Handlers/IFieldGeneratorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Core/FieldGenerators/Handlers/IFieldGeneratorHandler.cs -------------------------------------------------------------------------------- /ChameleonForms.Core/FieldGenerators/IFieldGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Core/FieldGenerators/IFieldGenerator.cs -------------------------------------------------------------------------------- /ChameleonForms.Core/HtmlAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Core/HtmlAttributes.cs -------------------------------------------------------------------------------- /ChameleonForms.Core/HtmlContentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Core/HtmlContentExtensions.cs -------------------------------------------------------------------------------- /ChameleonForms.Core/LazyHtmlAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Core/LazyHtmlAttributes.cs -------------------------------------------------------------------------------- /ChameleonForms.Core/Templates/HtmlCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Core/Templates/HtmlCreator.cs -------------------------------------------------------------------------------- /ChameleonForms.Core/Templates/IFormTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Core/Templates/IFormTemplate.cs -------------------------------------------------------------------------------- /ChameleonForms.Example/ChameleonForms.Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/ChameleonForms.Example.csproj -------------------------------------------------------------------------------- /ChameleonForms.Example/Controllers/ComparisonController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Controllers/ComparisonController.cs -------------------------------------------------------------------------------- /ChameleonForms.Example/Controllers/ExampleFormsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Controllers/ExampleFormsController.cs -------------------------------------------------------------------------------- /ChameleonForms.Example/Controllers/Filters/FormTemplateFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Controllers/Filters/FormTemplateFilter.cs -------------------------------------------------------------------------------- /ChameleonForms.Example/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Controllers/HomeController.cs -------------------------------------------------------------------------------- /ChameleonForms.Example/Forms/Components/RandomComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Forms/Components/RandomComponent.cs -------------------------------------------------------------------------------- /ChameleonForms.Example/Forms/Templates/RandomFormTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Forms/Templates/RandomFormTemplate.cs -------------------------------------------------------------------------------- /ChameleonForms.Example/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Program.cs -------------------------------------------------------------------------------- /ChameleonForms.Example/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Properties/launchSettings.json -------------------------------------------------------------------------------- /ChameleonForms.Example/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Startup.cs -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/ChameleonForms.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/ChameleonForms.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/ChameleonFormsTH.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/ChameleonFormsTH.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/EditorTemplates.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/Boolean.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/EditorTemplates/Boolean.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/Byte.cshtml: -------------------------------------------------------------------------------- 1 | @await Html.PartialAsync("~/Views/Comparison/EditorTemplates/Number.cshtml") 2 | -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/Collection.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/EditorTemplates/Collection.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/Date.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/EditorTemplates/Date.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/DateTime.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/EditorTemplates/DateTime.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/Decimal.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/EditorTemplates/Decimal.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/EmailAddress.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/EditorTemplates/EmailAddress.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/HiddenInput.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/EditorTemplates/HiddenInput.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/HtmlInput.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/EditorTemplates/HtmlInput.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/Int32.cshtml: -------------------------------------------------------------------------------- 1 | @await Html.PartialAsync("~/Views/Comparison/EditorTemplates/Number.cshtml") 2 | -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/Int64.cshtml: -------------------------------------------------------------------------------- 1 | @await Html.PartialAsync("~/Views/Comparison/EditorTemplates/Number.cshtml") 2 | -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/MembershipType.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/EditorTemplates/MembershipType.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/MultilineText.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/EditorTemplates/MultilineText.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/Number.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/EditorTemplates/Number.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/Object.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/EditorTemplates/Object.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/Password.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/EditorTemplates/Password.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/PhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/EditorTemplates/PhoneNumber.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/SByte.cshtml: -------------------------------------------------------------------------------- 1 | @await Html.PartialAsync("~/Views/Comparison/EditorTemplates/Number.cshtml") 2 | -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/Single.cshtml: -------------------------------------------------------------------------------- 1 | @await Html.PartialAsync("~/Views/Comparison/EditorTemplates/Number.cshtml") 2 | -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/String.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/EditorTemplates/String.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/Text.cshtml: -------------------------------------------------------------------------------- 1 | @await Html.PartialAsync("~/Views/Comparison/EditorTemplates/String.cshtml") 2 | -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/Time.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/EditorTemplates/Time.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/UInt32.cshtml: -------------------------------------------------------------------------------- 1 | @await Html.PartialAsync("~/Views/Comparison/EditorTemplates/Number.cshtml") 2 | -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/UInt64.cshtml: -------------------------------------------------------------------------------- 1 | @await Html.PartialAsync("~/Views/Comparison/EditorTemplates/Number.cshtml") 2 | -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/Url.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/EditorTemplates/Url.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/ViewDataDictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/EditorTemplates/ViewDataDictionaryExtensions.cs -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/EditorTemplates/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/EditorTemplates/_Layout.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/HtmlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/HtmlExtensions.cs -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/HtmlHelpers.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/HtmlHelpers.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Comparison/TagHelpers.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Comparison/TagHelpers.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/BasicExample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/BasicExample.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/Buttons.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/Buttons.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/ButtonsTH.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/ButtonsTH.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/ChangingContext.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/ChangingContext.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/ChangingContextTH.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/ChangingContextTH.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/Form1.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/Form1.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/Form2.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/Form2.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/Labels.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/Labels.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/ModelBindingExample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/ModelBindingExample.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/NullList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/NullList.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/NullModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/NullModel.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/NullModelWithList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/NullModelWithList.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/Partials.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/Partials.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/PartialsTH.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/PartialsTH.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/_BaseChildPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/_BaseChildPartial.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/_BaseChildPartialTH.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/_BaseChildPartialTH.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/_BaseParentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/_BaseParentPartial.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/_BaseParentPartialTH.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/_BaseParentPartialTH.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/_Child.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/_Child.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/_Child2.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/_Child2.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/_ChildPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/_ChildPartial.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/_ChildPartialTH.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/_ChildPartialTH.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/_FormAgainstChildProperty.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/_FormAgainstChildProperty.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/_FormAgainstDifferentModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/_FormAgainstDifferentModel.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/_FormPartialAgainstChildProperty.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/_FormPartialAgainstChildProperty.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/_OtherForm.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/_OtherForm.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/_ParentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/_ParentPartial.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/ExampleForms/_ParentPartialTH.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/ExampleForms/_ParentPartialTH.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Shared/_Bootstrap3Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Shared/_Bootstrap3Layout.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Shared/_Bootstrap3LayoutWithoutJQuery.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Shared/_Bootstrap3LayoutWithoutJQuery.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/Shared/_LayoutWithoutJQuery.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/Shared/_LayoutWithoutJQuery.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Example/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/web.config -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/css/styles.css -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/aspnetvalidation/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/aspnetvalidation/LICENSE.txt -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/aspnetvalidation/aspnet-validation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/aspnetvalidation/aspnet-validation.css -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/aspnetvalidation/aspnet-validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/aspnetvalidation/aspnet-validation.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/aspnetvalidation/aspnet-validation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/aspnetvalidation/aspnet-validation.min.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/aspnetvalidation/aspnet-validation.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/aspnetvalidation/aspnet-validation.min.js.map -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap-native/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap-native/LICENSE -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap-native/dist/bootstrap-native-v4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap-native/dist/bootstrap-native-v4.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap-native/dist/bootstrap-native-v4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap-native/dist/bootstrap-native-v4.min.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap-native/dist/bootstrap-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap-native/dist/bootstrap-native.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap-native/dist/bootstrap-native.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap-native/dist/bootstrap-native.min.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap-native/dist/polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap-native/dist/polyfill.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap-native/dist/polyfill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap-native/dist/polyfill.min.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap3/LICENSE -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/css/bootstrap.css -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/js/bootstrap.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap3/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap4/LICENSE -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap.css -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/js/bootstrap.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/bootstrap4/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/chameleonforms/chameleonforms-twitterbootstrap3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/chameleonforms/chameleonforms-twitterbootstrap3.css -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/chameleonforms/unobtrusive-date-validation.chameleonforms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/chameleonforms/unobtrusive-date-validation.chameleonforms.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/chameleonforms/unobtrusive-twitterbootstrap3-validation.chameleonforms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/chameleonforms/unobtrusive-twitterbootstrap3-validation.chameleonforms.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /ChameleonForms.Example/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Example/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonForms.Templates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonForms.Templates.csproj -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/BeginMessage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsDefaultTemplate/BeginMessage.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/BeginNavigation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsDefaultTemplate/BeginNavigation.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/BeginNestedSection.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsDefaultTemplate/BeginNestedSection.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/BeginSection.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsDefaultTemplate/BeginSection.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/EndField.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsDefaultTemplate/EndField.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/EndForm.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsDefaultTemplate/EndForm.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/EndMessage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsDefaultTemplate/EndMessage.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/EndNavigation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsDefaultTemplate/EndNavigation.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/EndNestedSection.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsDefaultTemplate/EndNestedSection.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/EndSection.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsDefaultTemplate/EndSection.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/Field.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsDefaultTemplate/Field.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/GetAppendedHtml.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsDefaultTemplate/GetAppendedHtml.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/GetHint.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsDefaultTemplate/GetHint.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/GetPrependedHtml.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsDefaultTemplate/GetPrependedHtml.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/MessageParagraph.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsDefaultTemplate/MessageParagraph.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/Params/BeginSectionParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsDefaultTemplate/Params/BeginSectionParams.cs -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/Params/FieldConfigurationParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsDefaultTemplate/Params/FieldConfigurationParams.cs -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/Params/FieldParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsDefaultTemplate/Params/FieldParams.cs -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/Params/ListParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsDefaultTemplate/Params/ListParams.cs -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/Params/MessageParagraphParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsDefaultTemplate/Params/MessageParagraphParams.cs -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/Params/MessageParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsDefaultTemplate/Params/MessageParams.cs -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/RadioOrCheckboxList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsDefaultTemplate/RadioOrCheckboxList.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsDefaultTemplate/RequiredDesignator.cshtml: -------------------------------------------------------------------------------- 1 | @inherits RazorRenderer.BasePage 2 | * -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/BeginMessage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/BeginMessage.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/BeginNavigation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/BeginNavigation.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/BeginNestedSection.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/BeginNestedSection.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/BeginSection.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/BeginSection.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/EndField.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/EndField.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/EndForm.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/EndForm.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/EndMessage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/EndMessage.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/EndNavigation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/EndNavigation.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/EndNestedSection.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/EndNestedSection.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/EndSection.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/EndSection.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/Field.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/Field.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/GetAppendedHtml.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/GetAppendedHtml.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/GetHint.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/GetHint.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/GetLabelHtml.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/GetLabelHtml.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/GetPrependedHtml.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/GetPrependedHtml.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/MessageParagraph.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/MessageParagraph.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/Params/BeginSectionParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/Params/BeginSectionParams.cs -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/Params/FieldConfigurationParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/Params/FieldConfigurationParams.cs -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/Params/FieldParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/Params/FieldParams.cs -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/Params/LabelParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/Params/LabelParams.cs -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/Params/ListParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/Params/ListParams.cs -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/Params/MessageParagraphParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/Params/MessageParagraphParams.cs -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/Params/MessageParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/Params/MessageParams.cs -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/RadioOrCheckboxList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/RadioOrCheckboxList.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/RequiredDesignator.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/ChameleonFormsTwitterBootstrap3Template/RequiredDesignator.cshtml -------------------------------------------------------------------------------- /ChameleonForms.Templates/Default/DefaultFormTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/Default/DefaultFormTemplate.cs -------------------------------------------------------------------------------- /ChameleonForms.Templates/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /ChameleonForms.Templates/TwitterBootstrap3/ButtonHtmlAttributesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/TwitterBootstrap3/ButtonHtmlAttributesExtensions.cs -------------------------------------------------------------------------------- /ChameleonForms.Templates/TwitterBootstrap3/ButtonSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/TwitterBootstrap3/ButtonSize.cs -------------------------------------------------------------------------------- /ChameleonForms.Templates/TwitterBootstrap3/EmphasisStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/TwitterBootstrap3/EmphasisStyle.cs -------------------------------------------------------------------------------- /ChameleonForms.Templates/TwitterBootstrap3/FieldConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/TwitterBootstrap3/FieldConfigurationExtensions.cs -------------------------------------------------------------------------------- /ChameleonForms.Templates/TwitterBootstrap3/TwitterBootstrap3FormTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Templates/TwitterBootstrap3/TwitterBootstrap3FormTemplate.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/App.config -------------------------------------------------------------------------------- /ChameleonForms.Tests/Attributes/ExistsInAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Attributes/ExistsInAttributeTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/ChameleonForms.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/ChameleonForms.Tests.csproj -------------------------------------------------------------------------------- /ChameleonForms.Tests/Component/Config/FieldConfigurationShould.Proxy_html_attributes.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Component/Config/FieldConfigurationShould.Proxy_html_attributes.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Component/Config/FieldConfigurationShould.Set_autofocus_attribute.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Component/Config/FieldConfigurationShould.Set_autofocus_attribute.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Component/Config/FieldConfigurationShould.Set_disabled_attribute.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Component/Config/FieldConfigurationShould.Set_disabled_attribute.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Component/Config/FieldConfigurationShould.Set_id_attribute.approved.html: -------------------------------------------------------------------------------- 1 | id="DifferentId" -------------------------------------------------------------------------------- /ChameleonForms.Tests/Component/Config/FieldConfigurationShould.Set_numeric_field_attributes_decimal.approved.html: -------------------------------------------------------------------------------- 1 | max="100.52" min="-5.4" step="0.01" -------------------------------------------------------------------------------- /ChameleonForms.Tests/Component/Config/FieldConfigurationShould.Set_numeric_field_attributes_long.approved.html: -------------------------------------------------------------------------------- 1 | max="100" min="-5" step="1" -------------------------------------------------------------------------------- /ChameleonForms.Tests/Component/Config/FieldConfigurationShould.Set_numeric_field_attributes_string.approved.html: -------------------------------------------------------------------------------- 1 | max="1000.983" min="-23.24" -------------------------------------------------------------------------------- /ChameleonForms.Tests/Component/Config/FieldConfigurationShould.Set_placeholder_attribute.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Component/Config/FieldConfigurationShould.Set_placeholder_attribute.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Component/Config/FieldConfigurationShould.Set_readonly_attribute.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Component/Config/FieldConfigurationShould.Set_readonly_attribute.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Component/Config/FieldConfigurationShould.Set_tabindex_attribute.approved.html: -------------------------------------------------------------------------------- 1 | tabindex="44" -------------------------------------------------------------------------------- /ChameleonForms.Tests/Component/Config/FieldConfigurationShould.Set_textarea_attributes.approved.html: -------------------------------------------------------------------------------- 1 | cols="60" rows="5" -------------------------------------------------------------------------------- /ChameleonForms.Tests/Component/Config/FieldConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Component/Config/FieldConfigurationTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/ExtensionsShould.Create_populated_html_attributes_object_from_html_helper.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/ExtensionsShould.Create_populated_html_attributes_object_from_html_helper.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/ExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/ExtensionsTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_boolean_dropdown_list_and_false_value.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_boolean_dropdown_list_and_false_value.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_boolean_dropdown_list_and_true_value.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_boolean_dropdown_list_and_true_value.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_boolean_list_and_custom_labels.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_boolean_list_and_custom_labels.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_boolean_list_and_false_value.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_boolean_list_and_false_value.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_boolean_list_and_true_value.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_boolean_list_and_true_value.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_boolean_list_with_label_wrapping_element.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_boolean_list_with_label_wrapping_element.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_checked_single_checkbox_with_default_label.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_checked_single_checkbox_with_default_label.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_label_for_boolean_checkbox.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_label_for_boolean_checkbox.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_label_for_boolean_dropdown.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_label_for_boolean_dropdown.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_label_for_boolean_list.approved.html: -------------------------------------------------------------------------------- 1 | RequiredNullableBoolean -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_label_for_boolean_list_with_overridden_label.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_label_for_boolean_list_with_overridden_label.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_nullable_required_boolean_list_with_no_value.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_nullable_required_boolean_list_with_no_value.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_optional_boolean_and_no_value.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_optional_boolean_and_no_value.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_optional_boolean_dropdown_and_no_value.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_optional_boolean_dropdown_and_no_value.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_optional_boolean_list_and_no_value.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_optional_boolean_list_and_no_value.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_single_checkbox_with_custom_label.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_single_checkbox_with_custom_label.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_single_checkbox_with_default_label.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_single_checkbox_with_default_label.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_single_checkbox_with_label_wrapping_element.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_single_checkbox_with_label_wrapping_element.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_without_inline_label_for_boolean_checkbox.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.Use_correct_html_for_without_inline_label_for_boolean_checkbox.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/BooleanTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/DateTimeTests.Use_correct_html_for_datetime_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/DateTimeTests.Use_correct_html_for_datetime_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/DateTimeTests.Use_correct_html_for_datetime_field_with_format.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/DateTimeTests.Use_correct_html_for_datetime_field_with_format.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/DateTimeTests.Use_correct_html_for_datetime_field_with_g_format_en_gb.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/DateTimeTests.Use_correct_html_for_datetime_field_with_g_format_en_gb.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/DateTimeTests.Use_correct_html_for_datetime_field_with_g_format_uk_ua.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/DateTimeTests.Use_correct_html_for_datetime_field_with_g_format_uk_ua.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/DateTimeTests.Use_correct_html_for_nullable_datetime_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/DateTimeTests.Use_correct_html_for_nullable_datetime_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/DateTimeTests.Use_correct_html_for_nullable_datetime_field_with_format.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/DateTimeTests.Use_correct_html_for_nullable_datetime_field_with_format.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/DateTimeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/DateTimeTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_child_viewmodel_enum_list_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_child_viewmodel_enum_list_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_dropdown_optional_nullable_enum_list_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_dropdown_optional_nullable_enum_list_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_enum_list_with_excluded_value.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_enum_list_with_excluded_value.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_label_for_enum_dropdown.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_label_for_enum_dropdown.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_label_for_enum_list.approved.html: -------------------------------------------------------------------------------- 1 | RequiredEnum -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_label_for_enum_list_with_overridden_label.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_label_for_enum_list_with_overridden_label.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_nullable_required_enum_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_nullable_required_enum_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_optional_enum_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_optional_enum_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_optional_enum_field_with_null_string_attribute.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_optional_enum_field_with_null_string_attribute.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_optional_enum_list_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_optional_enum_list_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_optional_nullable_enum_list_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_optional_nullable_enum_list_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_required_enum_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_required_enum_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_required_enum_list_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_required_enum_list_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_required_nullable_enum_list_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.Use_correct_html_for_required_nullable_enum_list_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/EnumTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FieldGeneratorTests.Use_correct_html_for_field_label_with_display_name.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FieldGeneratorTests.Use_correct_html_for_field_label_with_display_name.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FieldGeneratorTests.Use_correct_html_for_field_label_with_null_label.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FieldGeneratorTests.Use_correct_html_for_field_label_with_null_label.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FieldGeneratorTests.Use_correct_html_for_field_label_with_overridden_id.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FieldGeneratorTests.Use_correct_html_for_field_label_with_overridden_id.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FieldGeneratorTests.Use_correct_html_for_field_label_with_overridden_id_2.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FieldGeneratorTests.Use_correct_html_for_field_label_with_overridden_id_2.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FieldGeneratorTests.Use_correct_html_for_field_label_with_overridden_label.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FieldGeneratorTests.Use_correct_html_for_field_label_with_overridden_label.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FieldGeneratorTests.Use_correct_html_for_field_label_without_config.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FieldGeneratorTests.Use_correct_html_for_field_label_without_config.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FieldGeneratorTests.Use_correct_html_for_field_validation.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FieldGeneratorTests.Use_correct_html_for_field_validation.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FieldGeneratorTests.Use_overridden_html_for_field_if_provided.approved.html: -------------------------------------------------------------------------------- 1 |

override

-------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FieldGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FieldGeneratorTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FlagsEnumTests.Use_correct_html_for_child_viewmodel_enum_list_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FlagsEnumTests.Use_correct_html_for_child_viewmodel_enum_list_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FlagsEnumTests.Use_correct_html_for_enum_list_with_excluded_value.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FlagsEnumTests.Use_correct_html_for_enum_list_with_excluded_value.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FlagsEnumTests.Use_correct_html_for_label_for_enum_dropdown.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FlagsEnumTests.Use_correct_html_for_label_for_enum_dropdown.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FlagsEnumTests.Use_correct_html_for_label_for_enum_list.approved.html: -------------------------------------------------------------------------------- 1 | RequiredFlagsEnum -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FlagsEnumTests.Use_correct_html_for_label_for_enum_list_with_overridden_label.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FlagsEnumTests.Use_correct_html_for_label_for_enum_list_with_overridden_label.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FlagsEnumTests.Use_correct_html_for_nullable_required_enum_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FlagsEnumTests.Use_correct_html_for_nullable_required_enum_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FlagsEnumTests.Use_correct_html_for_optional_enum_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FlagsEnumTests.Use_correct_html_for_optional_enum_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FlagsEnumTests.Use_correct_html_for_required_enum_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FlagsEnumTests.Use_correct_html_for_required_enum_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FlagsEnumTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/FlagsEnumTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/InputTests.Allow_type_to_be_overridden.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/InputTests.Allow_type_to_be_overridden.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/InputTests.Use_correct_html_for_email.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/InputTests.Use_correct_html_for_email.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/InputTests.Use_correct_html_for_file_upload.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/InputTests.Use_correct_html_for_file_upload.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/InputTests.Use_correct_html_for_password_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/InputTests.Use_correct_html_for_password_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/InputTests.Use_correct_html_for_string_url.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/InputTests.Use_correct_html_for_string_url.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/InputTests.Use_correct_html_for_text_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/InputTests.Use_correct_html_for_text_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/InputTests.Use_correct_html_for_text_field_with_value.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/InputTests.Use_correct_html_for_text_field_with_value.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/InputTests.Use_correct_html_for_textarea.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/InputTests.Use_correct_html_for_textarea.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/InputTests.Use_correct_html_for_textarea_with_overriden_cols_and_rows.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/InputTests.Use_correct_html_for_textarea_with_overriden_cols_and_rows.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/InputTests.Use_correct_html_for_uri_url.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/InputTests.Use_correct_html_for_uri_url.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/InputTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/InputTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Not_throw_exception_when_model_containing_list_property_is_null.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Not_throw_exception_when_model_containing_list_property_is_null.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_int_list_id.received.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_int_list_id.received.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_label_for_list_as_dropdown.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_label_for_list_as_dropdown.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_label_for_list_as_list.approved.html: -------------------------------------------------------------------------------- 1 | RequiredIntListId -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_label_for_list_as_list_with_overridden_label.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_label_for_list_as_list_with_overridden_label.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_null_required_string_list_id_as_list.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_null_required_string_list_id_as_list.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_optional_int_list_id.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_optional_int_list_id.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_optional_int_list_id_as_list.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_optional_int_list_id_as_list.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_optional_int_list_id_with_none_string_override.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_optional_int_list_id_with_none_string_override.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_optional_int_list_ids.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_optional_int_list_ids.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_optional_int_list_ids_as_list.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_optional_int_list_ids_as_list.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_optional_int_list_ids_with_empty_item_hidden.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_optional_int_list_ids_with_empty_item_hidden.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_optional_nullable_int_list_ids.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_optional_nullable_int_list_ids.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_optional_nullable_int_list_ids_as_list.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_optional_nullable_int_list_ids_as_list.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_optional_string_list_id_as_list.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_optional_string_list_id_as_list.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_optional_string_list_id_with_empty_item_hidden.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_optional_string_list_id_with_empty_item_hidden.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_required_int_list_id.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_required_int_list_id.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_required_int_list_ids.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_required_int_list_ids.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_required_int_list_ids_as_list.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_required_int_list_ids_as_list.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_required_nullable_int_list_id.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_required_nullable_int_list_id.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_required_nullable_int_list_ids.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_required_nullable_int_list_ids.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_required_string_list_id_as_list.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.Use_correct_html_for_required_string_list_id_as_list.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/ListTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_byte_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_byte_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_currency_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_currency_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_decimal_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_decimal_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_decimal_with_range_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_decimal_with_range_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_double_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_double_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_float_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_float_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_int_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_int_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_int_with_range_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_int_with_range_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_long_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_long_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_nullable_int_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_nullable_int_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_sbyte_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_sbyte_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_short_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_short_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_uint_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_uint_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_ulong_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_ulong_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_ushort_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Return_correct_html_for_ushort_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Use_correct_html_for_decimal_field_with_explicit_format_string.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Use_correct_html_for_decimal_field_with_explicit_format_string.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Use_correct_html_for_decimal_field_with_format_string_attribute.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.Use_correct_html_for_decimal_field_with_format_string_attribute.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGenerator/NumberTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/DefaultFieldGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/DefaultFieldGeneratorTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/Handlers/BooleanHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/Handlers/BooleanHandlerTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/Handlers/DateTimeHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/Handlers/DateTimeHandlerTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/Handlers/DefaultHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/Handlers/DefaultHandlerTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/Handlers/EnumListHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/Handlers/EnumListHandlerTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/Handlers/FieldGeneratorHandlerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/Handlers/FieldGeneratorHandlerTest.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/Handlers/ListHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/Handlers/ListHandlerTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/Handlers/NumberHandlerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/Handlers/NumberHandlerTest.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/Handlers/PasswordHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/Handlers/PasswordHandlerTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/FieldGenerator/Handlers/TextAreaHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FieldGenerator/Handlers/TextAreaHandlerTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/Form/FormIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Form/FormIntegrationTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/Form/IntegratedFormShould.Output_field_html_with_field_configuration_values.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Form/IntegratedFormShould.Output_field_html_with_field_configuration_values.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Form/IntegratedFormShould.Output_field_with_hint_using_default_template.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Form/IntegratedFormShould.Output_field_with_hint_using_default_template.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Form/IntegratedFormShould.Output_label_html_with_field_configuration_values.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Form/IntegratedFormShould.Output_label_html_with_field_configuration_values.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Form/IntegratedFormShould.Output_optional_field_using_default_template.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Form/IntegratedFormShould.Output_optional_field_using_default_template.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Form/IntegratedFormShould.Output_required_field_using_default_template.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Form/IntegratedFormShould.Output_required_field_using_default_template.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/FormTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/FormTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/Helpers/ChangeCulture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Helpers/ChangeCulture.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/Helpers/DefaultCompositeMetadataDetailsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Helpers/DefaultCompositeMetadataDetailsProvider.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/Helpers/MvcTestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Helpers/MvcTestContext.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/HtmlAttributesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/HtmlAttributesTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/HtmlHelperExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/HtmlHelperExtensionsTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/HumanizedLabelsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/HumanizedLabelsTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/LazyHtmlAttributesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/LazyHtmlAttributesTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/ModelBinders/DateTimeModelBinderTests/DateTimeModelBinderShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/ModelBinders/DateTimeModelBinderTests/DateTimeModelBinderShould.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/ModelBinders/DateTimeModelBinderTests/TestViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/ModelBinders/DateTimeModelBinderTests/TestViewModel.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/ModelBinders/EnumListModelBinderTests/GivenEmptySubmission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/ModelBinders/EnumListModelBinderTests/GivenEmptySubmission.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/ModelBinders/EnumListModelBinderTests/GivenInvalidMultipleSubmission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/ModelBinders/EnumListModelBinderTests/GivenInvalidMultipleSubmission.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/ModelBinders/EnumListModelBinderTests/GivenInvalidSingleSubmission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/ModelBinders/EnumListModelBinderTests/GivenInvalidSingleSubmission.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/ModelBinders/EnumListModelBinderTests/GivenNoSubmission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/ModelBinders/EnumListModelBinderTests/GivenNoSubmission.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/ModelBinders/EnumListModelBinderTests/GivenValidMultipleSubmission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/ModelBinders/EnumListModelBinderTests/GivenValidMultipleSubmission.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/ModelBinders/EnumListModelBinderTests/GivenValidMultipleSubmissionWithEmptyValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/ModelBinders/EnumListModelBinderTests/GivenValidMultipleSubmissionWithEmptyValue.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/ModelBinders/EnumListModelBinderTests/GivenValidSingleSubmission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/ModelBinders/EnumListModelBinderTests/GivenValidSingleSubmission.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/ModelBinders/EnumListModelBinderTests/TestViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/ModelBinders/EnumListModelBinderTests/TestViewModel.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/ModelBinders/FlagsEnumModelBinderTests/FlagsEnumModelBinderShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/ModelBinders/FlagsEnumModelBinderTests/FlagsEnumModelBinderShould.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/ModelBinders/FlagsEnumModelBinderTests/TestViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/ModelBinders/FlagsEnumModelBinderTests/TestViewModel.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/ModelBinders/ModelBinderTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/ModelBinders/ModelBinderTestBase.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/ModelBinders/UriModelBinderTests/TestViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/ModelBinders/UriModelBinderTests/TestViewModel.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/ModelBinders/UriModelBinderTests/UriModelBinderShould.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/ModelBinders/UriModelBinderTests/UriModelBinderShould.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Properties/launchSettings.json -------------------------------------------------------------------------------- /ChameleonForms.Tests/PublicApiTests.ChameleonFormsPublicApi_ShouldNotChange_WithoutApproval.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/PublicApiTests.ChameleonFormsPublicApi_ShouldNotChange_WithoutApproval.approved.txt -------------------------------------------------------------------------------- /ChameleonForms.Tests/PublicApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/PublicApiTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/Scripts/ManuallyRunSpecs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Scripts/ManuallyRunSpecs.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Scripts/chutzpah.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Scripts/chutzpah.json -------------------------------------------------------------------------------- /ChameleonForms.Tests/Scripts/fixtures/DateTimeValidationFixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Scripts/fixtures/DateTimeValidationFixtures.js -------------------------------------------------------------------------------- /ChameleonForms.Tests/Scripts/lib/data-driven.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Scripts/lib/data-driven.js -------------------------------------------------------------------------------- /ChameleonForms.Tests/Scripts/lib/jasmine-2.0.0/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Scripts/lib/jasmine-2.0.0/boot.js -------------------------------------------------------------------------------- /ChameleonForms.Tests/Scripts/lib/jasmine-2.0.0/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Scripts/lib/jasmine-2.0.0/console.js -------------------------------------------------------------------------------- /ChameleonForms.Tests/Scripts/lib/jasmine-2.0.0/jasmine-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Scripts/lib/jasmine-2.0.0/jasmine-html.js -------------------------------------------------------------------------------- /ChameleonForms.Tests/Scripts/lib/jasmine-2.0.0/jasmine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Scripts/lib/jasmine-2.0.0/jasmine.css -------------------------------------------------------------------------------- /ChameleonForms.Tests/Scripts/lib/jasmine-2.0.0/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Scripts/lib/jasmine-2.0.0/jasmine.js -------------------------------------------------------------------------------- /ChameleonForms.Tests/Scripts/lib/jasmine-2.0.0/jasmine_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Scripts/lib/jasmine-2.0.0/jasmine_favicon.png -------------------------------------------------------------------------------- /ChameleonForms.Tests/Scripts/spec/DateTimeValidationSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Scripts/spec/DateTimeValidationSpec.js -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Begin_form_with_enctype.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Begin_form_with_enctype.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Begin_form_without_enctype.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Begin_form_without_enctype.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Begin_nested_section.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Begin_nested_section.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Begin_nested_section_without_leading_html_or_heading.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Begin_nested_section_without_leading_html_or_heading.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Begin_section.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Begin_section.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Begin_section_without_leading_html_or_heading.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Begin_section_without_leading_html_or_heading.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.End_form.approved.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.End_nested_section.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.End_nested_section.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.End_section.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.End_section.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_begin_failure_message.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_begin_failure_message.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_begin_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_begin_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_begin_information_message.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_begin_information_message.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_begin_information_message_without_heading.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_begin_information_message_without_heading.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_begin_navigation.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_begin_navigation.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_button_input_when_button_with_no_content_specified.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_button_input_when_button_with_no_content_specified.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_button_when_button_with_content_specified.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_button_when_button_with_content_specified.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_end_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_end_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_end_message.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_end_message.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_end_navigation.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_end_navigation.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_field_with_container_class.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_field_with_container_class.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_field_with_hint.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_field_with_hint.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_field_with_hint_id.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_field_with_hint_id.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_field_with_prepended_and_appended_html.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_field_with_prepended_and_appended_html.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_message_paragraph.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateShould.Output_message_paragraph.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/Default/DefaultFormTemplateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/Default/DefaultFormTemplateTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/HtmlCreatorShould.Generate_button_with_default_options.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/HtmlCreatorShould.Generate_button_with_default_options.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/HtmlCreatorShould.Generate_input.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/HtmlCreatorShould.Generate_input.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/HtmlCreatorShould.Generate_input_without_name.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/HtmlCreatorShould.Generate_input_without_name.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/HtmlCreatorShould.Generate_reset_button_with_html_content.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/HtmlCreatorShould.Generate_reset_button_with_html_content.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/HtmlCreatorShould.Generate_submit_button_with_default_options.received.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/HtmlCreatorShould.Generate_submit_button_with_default_options.received.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/HtmlCreatorShould.Generate_submit_button_with_non_default_options.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/HtmlCreatorShould.Generate_submit_button_with_non_default_options.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/HtmlCreatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/HtmlCreatorTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/OutputAttributesShould.Merge_attributes_from_multiple_objects.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/OutputAttributesShould.Merge_attributes_from_multiple_objects.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/OutputAttributesShould.Output_attributes_from_single_object.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/OutputAttributesShould.Output_attributes_from_single_object.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/ButtonTests.Output_button_input_when_button_with_no_content_specified.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/ButtonTests.Output_button_input_when_button_with_no_content_specified.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/ButtonTests.Output_button_when_button_with_content_specified.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/ButtonTests.Output_button_when_button_with_content_specified.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/ButtonTests.Output_submit_button_when_button_with_content_and_submit_type_specified.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/ButtonTests.Output_submit_button_when_button_with_content_and_submit_type_specified.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/ButtonTests.Output_submit_button_with_non_default_style_or_size.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/ButtonTests.Output_submit_button_with_non_default_style_or_size.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/ButtonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/ButtonTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/FieldTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/FieldTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/FieldTests_TwitterBootstrapTemplateShould.Output_begin_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/FieldTests_TwitterBootstrapTemplateShould.Output_begin_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/FieldTests_TwitterBootstrapTemplateShould.Output_end_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/FieldTests_TwitterBootstrapTemplateShould.Output_end_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/FieldTests_TwitterBootstrapTemplateShould.Output_field.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/FieldTests_TwitterBootstrapTemplateShould.Output_field.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/FieldTests_TwitterBootstrapTemplateShould.Output_field_with_container_class.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/FieldTests_TwitterBootstrapTemplateShould.Output_field_with_container_class.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/FieldTests_TwitterBootstrapTemplateShould.Output_field_with_hint.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/FieldTests_TwitterBootstrapTemplateShould.Output_field_with_hint.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/FieldTests_TwitterBootstrapTemplateShould.Output_field_with_hint_id.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/FieldTests_TwitterBootstrapTemplateShould.Output_field_with_hint_id.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/FormTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/FormTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/FormTests_TwitterBootstrapTemplateShould.Begin_form_with_enctype.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/FormTests_TwitterBootstrapTemplateShould.Begin_form_with_enctype.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/FormTests_TwitterBootstrapTemplateShould.Begin_form_without_enctype.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/FormTests_TwitterBootstrapTemplateShould.Begin_form_without_enctype.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/FormTests_TwitterBootstrapTemplateShould.End_form.approved.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/MessageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/MessageTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/MessageTests_TwitterBootstrapFormTemplateShould.Output_begin_failure_message.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/MessageTests_TwitterBootstrapFormTemplateShould.Output_begin_failure_message.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/MessageTests_TwitterBootstrapFormTemplateShould.Output_begin_information_message.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/MessageTests_TwitterBootstrapFormTemplateShould.Output_begin_information_message.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/MessageTests_TwitterBootstrapFormTemplateShould.Output_end_message.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/MessageTests_TwitterBootstrapFormTemplateShould.Output_end_message.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/MessageTests_TwitterBootstrapFormTemplateShould.Output_message_paragraph.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/MessageTests_TwitterBootstrapFormTemplateShould.Output_message_paragraph.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/NavigationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/NavigationTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/NavigationTests_TwitterBootstrapFormTemplateShould.Output_begin_information_message.approved.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/NavigationTests_TwitterBootstrapFormTemplateShould.Output_begin_navigation.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/NavigationTests_TwitterBootstrapFormTemplateShould.Output_begin_navigation.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/NavigationTests_TwitterBootstrapFormTemplateShould.Output_end_navigation.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/NavigationTests_TwitterBootstrapFormTemplateShould.Output_end_navigation.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/PrepareFieldConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/PrepareFieldConfigurationTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/RadioListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/RadioListTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/RadioListTests_TwitterBootstrapTemplateShould.Render_checkbox_list.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/RadioListTests_TwitterBootstrapTemplateShould.Render_checkbox_list.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/RadioListTests_TwitterBootstrapTemplateShould.Render_radio_list.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/RadioListTests_TwitterBootstrapTemplateShould.Render_radio_list.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/SectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/SectionTests.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/SectionTests_TwitterBoostrapFormTemplateShould.End_section.received.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/SectionTests_TwitterBootstrapFormTemplateShould.Begin_nested_section.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/SectionTests_TwitterBootstrapFormTemplateShould.Begin_nested_section.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/SectionTests_TwitterBootstrapFormTemplateShould.Begin_section.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/SectionTests_TwitterBootstrapFormTemplateShould.Begin_section.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/SectionTests_TwitterBootstrapFormTemplateShould.End_nested_section.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/Templates/TwitterBootstrap3/SectionTests_TwitterBootstrapFormTemplateShould.End_nested_section.approved.html -------------------------------------------------------------------------------- /ChameleonForms.Tests/Templates/TwitterBootstrap3/SectionTests_TwitterBootstrapFormTemplateShould.End_section.approved.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ChameleonForms.Tests/TestStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/TestStartup.cs -------------------------------------------------------------------------------- /ChameleonForms.Tests/coverlet.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.Tests/coverlet.runsettings -------------------------------------------------------------------------------- /ChameleonForms.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.nuspec -------------------------------------------------------------------------------- /ChameleonForms.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.sln -------------------------------------------------------------------------------- /ChameleonForms.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms.sln.DotSettings -------------------------------------------------------------------------------- /ChameleonForms/Attributes/ExistsInAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/Attributes/ExistsInAttribute.cs -------------------------------------------------------------------------------- /ChameleonForms/ChameleonForms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/ChameleonForms.csproj -------------------------------------------------------------------------------- /ChameleonForms/Component/Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/Component/Field.cs -------------------------------------------------------------------------------- /ChameleonForms/Component/FormComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/Component/FormComponent.cs -------------------------------------------------------------------------------- /ChameleonForms/Component/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/Component/Message.cs -------------------------------------------------------------------------------- /ChameleonForms/Component/Navigation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/Component/Navigation.cs -------------------------------------------------------------------------------- /ChameleonForms/Component/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/Component/Section.cs -------------------------------------------------------------------------------- /ChameleonForms/Config/ChameleonFormsConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/Config/ChameleonFormsConfig.cs -------------------------------------------------------------------------------- /ChameleonForms/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/Constants.cs -------------------------------------------------------------------------------- /ChameleonForms/FieldGenerators/DefaultFieldGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/FieldGenerators/DefaultFieldGenerator.cs -------------------------------------------------------------------------------- /ChameleonForms/FieldGenerators/FieldGeneratorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/FieldGenerators/FieldGeneratorExtensions.cs -------------------------------------------------------------------------------- /ChameleonForms/FieldGenerators/FieldGeneratorHandlersRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/FieldGenerators/FieldGeneratorHandlersRouter.cs -------------------------------------------------------------------------------- /ChameleonForms/FieldGenerators/Handlers/BooleanHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/FieldGenerators/Handlers/BooleanHandler.cs -------------------------------------------------------------------------------- /ChameleonForms/FieldGenerators/Handlers/DateTimeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/FieldGenerators/Handlers/DateTimeHandler.cs -------------------------------------------------------------------------------- /ChameleonForms/FieldGenerators/Handlers/DefaultHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/FieldGenerators/Handlers/DefaultHandler.cs -------------------------------------------------------------------------------- /ChameleonForms/FieldGenerators/Handlers/EnumListHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/FieldGenerators/Handlers/EnumListHandler.cs -------------------------------------------------------------------------------- /ChameleonForms/FieldGenerators/Handlers/FieldGeneratorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/FieldGenerators/Handlers/FieldGeneratorHandler.cs -------------------------------------------------------------------------------- /ChameleonForms/FieldGenerators/Handlers/FileHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/FieldGenerators/Handlers/FileHandler.cs -------------------------------------------------------------------------------- /ChameleonForms/FieldGenerators/Handlers/ListHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/FieldGenerators/Handlers/ListHandler.cs -------------------------------------------------------------------------------- /ChameleonForms/FieldGenerators/Handlers/NumberHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/FieldGenerators/Handlers/NumberHandler.cs -------------------------------------------------------------------------------- /ChameleonForms/FieldGenerators/Handlers/PasswordHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/FieldGenerators/Handlers/PasswordHandler.cs -------------------------------------------------------------------------------- /ChameleonForms/FieldGenerators/Handlers/TextAreaHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/FieldGenerators/Handlers/TextAreaHandler.cs -------------------------------------------------------------------------------- /ChameleonForms/Form.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/Form.cs -------------------------------------------------------------------------------- /ChameleonForms/HtmlHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/HtmlHelperExtensions.cs -------------------------------------------------------------------------------- /ChameleonForms/HumanizedLabelsDisplayMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/HumanizedLabelsDisplayMetadataProvider.cs -------------------------------------------------------------------------------- /ChameleonForms/Metadata/IModelMetadataAware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/Metadata/IModelMetadataAware.cs -------------------------------------------------------------------------------- /ChameleonForms/Metadata/ModelMetadataAwareDisplayMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/Metadata/ModelMetadataAwareDisplayMetadataProvider.cs -------------------------------------------------------------------------------- /ChameleonForms/ModelBinders/DateTimeModelBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/ModelBinders/DateTimeModelBinder.cs -------------------------------------------------------------------------------- /ChameleonForms/ModelBinders/DateTimeModelBinderProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/ModelBinders/DateTimeModelBinderProvider.cs -------------------------------------------------------------------------------- /ChameleonForms/ModelBinders/EnumListModelBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/ModelBinders/EnumListModelBinder.cs -------------------------------------------------------------------------------- /ChameleonForms/ModelBinders/EnumListModelBinderProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/ModelBinders/EnumListModelBinderProvider.cs -------------------------------------------------------------------------------- /ChameleonForms/ModelBinders/FlagsEnumModelBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/ModelBinders/FlagsEnumModelBinder.cs -------------------------------------------------------------------------------- /ChameleonForms/ModelBinders/FlagsEnumModelBinderProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/ModelBinders/FlagsEnumModelBinderProvider.cs -------------------------------------------------------------------------------- /ChameleonForms/ModelBinders/UriModelBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/ModelBinders/UriModelBinder.cs -------------------------------------------------------------------------------- /ChameleonForms/ModelBinders/UriModelBinderProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/ModelBinders/UriModelBinderProvider.cs -------------------------------------------------------------------------------- /ChameleonForms/PartialViewForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/PartialViewForm.cs -------------------------------------------------------------------------------- /ChameleonForms/PartialViewSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/PartialViewSection.cs -------------------------------------------------------------------------------- /ChameleonForms/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/Properties/launchSettings.json -------------------------------------------------------------------------------- /ChameleonForms/ReSharper/ReSharperAnnotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/ReSharper/ReSharperAnnotations.cs -------------------------------------------------------------------------------- /ChameleonForms/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/ChameleonFormTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/ChameleonFormTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/FieldConfigurationBaseTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/FieldConfigurationBaseTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/FieldConfigurationTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/FieldConfigurationTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/FieldElementConfigurationTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/FieldElementConfigurationTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/FieldElementTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/FieldElementTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/FieldLabelConfigurationTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/FieldLabelConfigurationTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/FieldLabelTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/FieldLabelTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/FieldTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/FieldTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/FieldValidationConfigurationTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/FieldValidationConfigurationTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/FieldValidationTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/FieldValidationTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/FormButtonTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/FormButtonTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/FormMessageTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/FormMessageTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/FormNavigationTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/FormNavigationTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/FormPartialTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/FormPartialTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/FormSectionTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/FormSectionTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/HtmlAttributesTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/HtmlAttributesTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/ManualFieldTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/ManualFieldTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/MessageParagraphTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/MessageParagraphTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/ModelAwareTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/ModelAwareTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/ModelPropertyTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/ModelPropertyTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/ResetButtonTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/ResetButtonTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/SubmitButtonTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/SubmitButtonTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/TagHelpers/TagHelperContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/TagHelpers/TagHelperContextExtensions.cs -------------------------------------------------------------------------------- /ChameleonForms/Templates/TwitterBootstrap3/ButtonTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/Templates/TwitterBootstrap3/ButtonTagHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/Utils/DisposableHtmlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/Utils/DisposableHtmlHelper.cs -------------------------------------------------------------------------------- /ChameleonForms/Utils/ExpressionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/Utils/ExpressionBuilder.cs -------------------------------------------------------------------------------- /ChameleonForms/Utils/ExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/Utils/ExpressionExtensions.cs -------------------------------------------------------------------------------- /ChameleonForms/Utils/SwapHtmlHelperWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/Utils/SwapHtmlHelperWriter.cs -------------------------------------------------------------------------------- /ChameleonForms/Utils/ViewContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/Utils/ViewContextExtensions.cs -------------------------------------------------------------------------------- /ChameleonForms/Validators/DateTimeClientModelValidatorProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/Validators/DateTimeClientModelValidatorProvider.cs -------------------------------------------------------------------------------- /ChameleonForms/Validators/IntegralNumericClientModelValidatorProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/Validators/IntegralNumericClientModelValidatorProvider.cs -------------------------------------------------------------------------------- /ChameleonForms/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/ChameleonForms/readme.txt -------------------------------------------------------------------------------- /GitVersionConfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/GitVersionConfig.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/README.md -------------------------------------------------------------------------------- /docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docfx.json -------------------------------------------------------------------------------- /docs/Diagrams.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/Diagrams.docx -------------------------------------------------------------------------------- /docs/account-signup-render.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/account-signup-render.png -------------------------------------------------------------------------------- /docs/bg-gr-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/bg-gr-v.png -------------------------------------------------------------------------------- /docs/boolean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/boolean.md -------------------------------------------------------------------------------- /docs/bootstrap-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/bootstrap-buttons.png -------------------------------------------------------------------------------- /docs/bootstrap-example-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/bootstrap-example-banner.png -------------------------------------------------------------------------------- /docs/bootstrap-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/bootstrap-template.md -------------------------------------------------------------------------------- /docs/chameleon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/chameleon.jpg -------------------------------------------------------------------------------- /docs/comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/comparison.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/custom-field-generator-handlers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/custom-field-generator-handlers.md -------------------------------------------------------------------------------- /docs/custom-field-generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/custom-field-generator.md -------------------------------------------------------------------------------- /docs/custom-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/custom-template.md -------------------------------------------------------------------------------- /docs/datetime-client-side-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/datetime-client-side-validation.md -------------------------------------------------------------------------------- /docs/datetime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/datetime.md -------------------------------------------------------------------------------- /docs/default-fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/default-fields.md -------------------------------------------------------------------------------- /docs/different-form-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/different-form-models.md -------------------------------------------------------------------------------- /docs/email.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/email.md -------------------------------------------------------------------------------- /docs/enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/enum.md -------------------------------------------------------------------------------- /docs/extending-field-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/extending-field-configuration.md -------------------------------------------------------------------------------- /docs/extending-form-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/extending-form-components.md -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/field-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/field-configuration.md -------------------------------------------------------------------------------- /docs/field-element.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/field-element.md -------------------------------------------------------------------------------- /docs/field-label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/field-label.md -------------------------------------------------------------------------------- /docs/field-validation-html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/field-validation-html.md -------------------------------------------------------------------------------- /docs/field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/field.md -------------------------------------------------------------------------------- /docs/file-upload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/file-upload.md -------------------------------------------------------------------------------- /docs/flags-enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/flags-enum.md -------------------------------------------------------------------------------- /docs/form-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/form-templates.md -------------------------------------------------------------------------------- /docs/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/form.png -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/html-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/html-attributes.md -------------------------------------------------------------------------------- /docs/html-helper-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/html-helper-context.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/int-field-with-bootstrap-input-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/int-field-with-bootstrap-input-group.png -------------------------------------------------------------------------------- /docs/labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/labels.md -------------------------------------------------------------------------------- /docs/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/list.md -------------------------------------------------------------------------------- /docs/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/logo-small.png -------------------------------------------------------------------------------- /docs/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/message.png -------------------------------------------------------------------------------- /docs/multiple-enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/multiple-enum.md -------------------------------------------------------------------------------- /docs/multiple-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/multiple-list.md -------------------------------------------------------------------------------- /docs/navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/navigation.png -------------------------------------------------------------------------------- /docs/number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/number.md -------------------------------------------------------------------------------- /docs/partials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/partials.md -------------------------------------------------------------------------------- /docs/password.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/password.md -------------------------------------------------------------------------------- /docs/section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/section.png -------------------------------------------------------------------------------- /docs/signup-example-render.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/signup-example-render.png -------------------------------------------------------------------------------- /docs/templates/chameleonforms/layout/_master.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/templates/chameleonforms/layout/_master.tmpl -------------------------------------------------------------------------------- /docs/templates/chameleonforms/partials/home.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/templates/chameleonforms/partials/home.tmpl.partial -------------------------------------------------------------------------------- /docs/templates/chameleonforms/styles/docfx.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/templates/chameleonforms/styles/docfx.vendor.js -------------------------------------------------------------------------------- /docs/templates/chameleonforms/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/templates/chameleonforms/styles/main.css -------------------------------------------------------------------------------- /docs/templates/chameleonforms/styles/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/templates/chameleonforms/styles/main.js -------------------------------------------------------------------------------- /docs/textarea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/textarea.md -------------------------------------------------------------------------------- /docs/the-form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/the-form.md -------------------------------------------------------------------------------- /docs/the-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/the-message.md -------------------------------------------------------------------------------- /docs/the-navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/the-navigation.md -------------------------------------------------------------------------------- /docs/the-section.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/the-section.md -------------------------------------------------------------------------------- /docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/toc.yml -------------------------------------------------------------------------------- /docs/uri.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/uri.md -------------------------------------------------------------------------------- /docs/why.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/docs/why.md -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/index.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/logo.png -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/logo.svg -------------------------------------------------------------------------------- /toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRCollective/ChameleonForms/HEAD/toc.yml --------------------------------------------------------------------------------