├── .github └── workflows │ └── main.yml ├── .gitignore ├── .scrutinizer.yml ├── CHANGELOG-2.0.md ├── CHANGELOG-2.1.md ├── CHANGELOG-3.0.md ├── CHANGELOG-3.1.md ├── CHANGELOG-4.0.md ├── CHANGELOG-5.0.md ├── CHANGELOG-6.0.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── jest.config.js ├── jest └── integration │ └── formextensions.test.js ├── package.json ├── phpcs.xml ├── phpunit.xml.dist ├── phpunit.xml.dist.bak ├── spec └── Flagbit │ └── Bundle │ └── TableAttributeBundle │ ├── AttributeType │ └── TableTypeSpec.php │ ├── Component │ └── Product │ │ ├── Completeness │ │ └── MaskItemGenerator │ │ │ └── TableMaskItemSpec.php │ │ └── Factory │ │ └── Value │ │ └── TableValueFactorySpec.php │ ├── Controller │ └── AjaxOptionControllerSpec.php │ ├── DependencyInjection │ └── ConfigurationSpec.php │ ├── Entity │ └── AttributeOptionSpec.php │ ├── Form │ └── TableJsonTransformerSpec.php │ ├── Http │ └── Select2JsonResponseSpec.php │ ├── Normalizer │ └── AttributeOptionNormalizerSpec.php │ ├── Provider │ └── Field │ │ └── TableFieldProviderSpec.php │ └── Validator │ ├── ConstraintFactorySpec.php │ ├── ConstraintGuesser │ └── TableGuesserSpec.php │ └── Constraints │ └── TableValidatorSpec.php ├── src ├── AttributeType │ └── TableType.php ├── Component │ └── Product │ │ ├── Completeness │ │ └── MaskItemGenerator │ │ │ └── TableMaskItem.php │ │ └── Factory │ │ └── Value │ │ └── TableValueFactory.php ├── Controller │ └── AjaxOptionController.php ├── DependencyInjection │ ├── Configuration.php │ └── FlagbitTableAttributeExtension.php ├── Entity │ ├── AttributeOption.php │ └── ConstraintConfigInterface.php ├── FlagbitTableAttributeBundle.php ├── Form │ ├── Extension │ │ └── AttributeOptionTypeExtension.php │ └── TableJsonTransformer.php ├── Http │ └── Select2JsonResponse.php ├── Normalizer │ └── AttributeOptionNormalizer.php ├── Provider │ └── Field │ │ └── TableFieldProvider.php ├── Resources │ ├── config │ │ ├── array_converters.xml │ │ ├── attribute_types.xml │ │ ├── comparators.xml │ │ ├── controller.xml │ │ ├── doctrine.xml │ │ ├── doctrine │ │ │ └── AttributeOption.orm.xml │ │ ├── entities.xml │ │ ├── factories.xml │ │ ├── form_extensions.yml │ │ ├── form_extensions │ │ │ └── attribute │ │ │ │ └── edit.yml │ │ ├── query_builders.xml │ │ ├── requirejs.yml │ │ ├── routing.yml │ │ ├── services.xml │ │ ├── updaters.xml │ │ └── validators.xml │ ├── public │ │ ├── images │ │ │ └── attribute │ │ │ │ └── icon-table.svg │ │ ├── js │ │ │ ├── Json │ │ │ │ ├── Generator.js │ │ │ │ ├── Input.js │ │ │ │ ├── Observer.js │ │ │ │ ├── Renderer.js │ │ │ │ ├── Renderer │ │ │ │ │ ├── Constraint.js │ │ │ │ │ ├── Default.js │ │ │ │ │ ├── Number.js │ │ │ │ │ ├── Select.js │ │ │ │ │ └── SelectFromUrl.js │ │ │ │ └── Storage.js │ │ │ ├── inittable.js │ │ │ ├── options-grid.js │ │ │ ├── product │ │ │ │ └── field │ │ │ │ │ ├── choices.js │ │ │ │ │ └── table-field.js │ │ │ └── tablecolumnview.js │ │ ├── less │ │ │ ├── index.less │ │ │ └── tableattribute.less │ │ └── templates │ │ │ └── product │ │ │ └── field │ │ │ └── table.html │ ├── translations │ │ ├── jsmessages.de.xlf │ │ ├── jsmessages.en.xlf │ │ ├── messages.de.xlf │ │ └── messages.en.xlf │ └── views │ │ └── Attribute │ │ └── Tab │ │ └── value.html.twig └── Validator │ ├── ConstraintFactory.php │ ├── ConstraintGuesser │ └── TableGuesser.php │ └── Constraints │ ├── Table.php │ └── TableValidator.php └── tests ├── AttributeType └── TableTypeTest.php ├── Form └── Extension │ └── AttributeOptionTypeExtensionTest.php ├── Kernel ├── EnterpriseFilterStubPass.php ├── PublicServiceCompilerPass.php ├── TestKernel.php └── config │ ├── bundles.php │ └── packages │ └── test │ ├── ee-services.yml │ ├── imports.yml │ ├── services.yml │ └── tableattribute.yml ├── Pim └── TagsAndServiceOverridesTest.php ├── Provider └── Field │ └── TableFieldProviderTest.php ├── Validator └── ConstraintGuesser │ └── TableGuesserTest.php ├── public ├── .gitkeep └── js │ └── require-paths.js └── var └── cache └── test └── Flagbit_Bundle_TableAttributeBundle_Test_Kernel_TestKernelTestContainer.php.lock /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /CHANGELOG-2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/CHANGELOG-2.0.md -------------------------------------------------------------------------------- /CHANGELOG-2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/CHANGELOG-2.1.md -------------------------------------------------------------------------------- /CHANGELOG-3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/CHANGELOG-3.0.md -------------------------------------------------------------------------------- /CHANGELOG-3.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/CHANGELOG-3.1.md -------------------------------------------------------------------------------- /CHANGELOG-4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/CHANGELOG-4.0.md -------------------------------------------------------------------------------- /CHANGELOG-5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/CHANGELOG-5.0.md -------------------------------------------------------------------------------- /CHANGELOG-6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/CHANGELOG-6.0.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/composer.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest/integration/formextensions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/jest/integration/formextensions.test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/package.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /phpunit.xml.dist.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/phpunit.xml.dist.bak -------------------------------------------------------------------------------- /spec/Flagbit/Bundle/TableAttributeBundle/AttributeType/TableTypeSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/spec/Flagbit/Bundle/TableAttributeBundle/AttributeType/TableTypeSpec.php -------------------------------------------------------------------------------- /spec/Flagbit/Bundle/TableAttributeBundle/Component/Product/Completeness/MaskItemGenerator/TableMaskItemSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/spec/Flagbit/Bundle/TableAttributeBundle/Component/Product/Completeness/MaskItemGenerator/TableMaskItemSpec.php -------------------------------------------------------------------------------- /spec/Flagbit/Bundle/TableAttributeBundle/Component/Product/Factory/Value/TableValueFactorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/spec/Flagbit/Bundle/TableAttributeBundle/Component/Product/Factory/Value/TableValueFactorySpec.php -------------------------------------------------------------------------------- /spec/Flagbit/Bundle/TableAttributeBundle/Controller/AjaxOptionControllerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/spec/Flagbit/Bundle/TableAttributeBundle/Controller/AjaxOptionControllerSpec.php -------------------------------------------------------------------------------- /spec/Flagbit/Bundle/TableAttributeBundle/DependencyInjection/ConfigurationSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/spec/Flagbit/Bundle/TableAttributeBundle/DependencyInjection/ConfigurationSpec.php -------------------------------------------------------------------------------- /spec/Flagbit/Bundle/TableAttributeBundle/Entity/AttributeOptionSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/spec/Flagbit/Bundle/TableAttributeBundle/Entity/AttributeOptionSpec.php -------------------------------------------------------------------------------- /spec/Flagbit/Bundle/TableAttributeBundle/Form/TableJsonTransformerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/spec/Flagbit/Bundle/TableAttributeBundle/Form/TableJsonTransformerSpec.php -------------------------------------------------------------------------------- /spec/Flagbit/Bundle/TableAttributeBundle/Http/Select2JsonResponseSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/spec/Flagbit/Bundle/TableAttributeBundle/Http/Select2JsonResponseSpec.php -------------------------------------------------------------------------------- /spec/Flagbit/Bundle/TableAttributeBundle/Normalizer/AttributeOptionNormalizerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/spec/Flagbit/Bundle/TableAttributeBundle/Normalizer/AttributeOptionNormalizerSpec.php -------------------------------------------------------------------------------- /spec/Flagbit/Bundle/TableAttributeBundle/Provider/Field/TableFieldProviderSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/spec/Flagbit/Bundle/TableAttributeBundle/Provider/Field/TableFieldProviderSpec.php -------------------------------------------------------------------------------- /spec/Flagbit/Bundle/TableAttributeBundle/Validator/ConstraintFactorySpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/spec/Flagbit/Bundle/TableAttributeBundle/Validator/ConstraintFactorySpec.php -------------------------------------------------------------------------------- /spec/Flagbit/Bundle/TableAttributeBundle/Validator/ConstraintGuesser/TableGuesserSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/spec/Flagbit/Bundle/TableAttributeBundle/Validator/ConstraintGuesser/TableGuesserSpec.php -------------------------------------------------------------------------------- /spec/Flagbit/Bundle/TableAttributeBundle/Validator/Constraints/TableValidatorSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/spec/Flagbit/Bundle/TableAttributeBundle/Validator/Constraints/TableValidatorSpec.php -------------------------------------------------------------------------------- /src/AttributeType/TableType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/AttributeType/TableType.php -------------------------------------------------------------------------------- /src/Component/Product/Completeness/MaskItemGenerator/TableMaskItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Component/Product/Completeness/MaskItemGenerator/TableMaskItem.php -------------------------------------------------------------------------------- /src/Component/Product/Factory/Value/TableValueFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Component/Product/Factory/Value/TableValueFactory.php -------------------------------------------------------------------------------- /src/Controller/AjaxOptionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Controller/AjaxOptionController.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/FlagbitTableAttributeExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/DependencyInjection/FlagbitTableAttributeExtension.php -------------------------------------------------------------------------------- /src/Entity/AttributeOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Entity/AttributeOption.php -------------------------------------------------------------------------------- /src/Entity/ConstraintConfigInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Entity/ConstraintConfigInterface.php -------------------------------------------------------------------------------- /src/FlagbitTableAttributeBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/FlagbitTableAttributeBundle.php -------------------------------------------------------------------------------- /src/Form/Extension/AttributeOptionTypeExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Form/Extension/AttributeOptionTypeExtension.php -------------------------------------------------------------------------------- /src/Form/TableJsonTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Form/TableJsonTransformer.php -------------------------------------------------------------------------------- /src/Http/Select2JsonResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Http/Select2JsonResponse.php -------------------------------------------------------------------------------- /src/Normalizer/AttributeOptionNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Normalizer/AttributeOptionNormalizer.php -------------------------------------------------------------------------------- /src/Provider/Field/TableFieldProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Provider/Field/TableFieldProvider.php -------------------------------------------------------------------------------- /src/Resources/config/array_converters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/config/array_converters.xml -------------------------------------------------------------------------------- /src/Resources/config/attribute_types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/config/attribute_types.xml -------------------------------------------------------------------------------- /src/Resources/config/comparators.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/config/comparators.xml -------------------------------------------------------------------------------- /src/Resources/config/controller.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/config/controller.xml -------------------------------------------------------------------------------- /src/Resources/config/doctrine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/config/doctrine.xml -------------------------------------------------------------------------------- /src/Resources/config/doctrine/AttributeOption.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/config/doctrine/AttributeOption.orm.xml -------------------------------------------------------------------------------- /src/Resources/config/entities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/config/entities.xml -------------------------------------------------------------------------------- /src/Resources/config/factories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/config/factories.xml -------------------------------------------------------------------------------- /src/Resources/config/form_extensions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/config/form_extensions.yml -------------------------------------------------------------------------------- /src/Resources/config/form_extensions/attribute/edit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/config/form_extensions/attribute/edit.yml -------------------------------------------------------------------------------- /src/Resources/config/query_builders.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/config/query_builders.xml -------------------------------------------------------------------------------- /src/Resources/config/requirejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/config/requirejs.yml -------------------------------------------------------------------------------- /src/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/config/services.xml -------------------------------------------------------------------------------- /src/Resources/config/updaters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/config/updaters.xml -------------------------------------------------------------------------------- /src/Resources/config/validators.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/config/validators.xml -------------------------------------------------------------------------------- /src/Resources/public/images/attribute/icon-table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/public/images/attribute/icon-table.svg -------------------------------------------------------------------------------- /src/Resources/public/js/Json/Generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/public/js/Json/Generator.js -------------------------------------------------------------------------------- /src/Resources/public/js/Json/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/public/js/Json/Input.js -------------------------------------------------------------------------------- /src/Resources/public/js/Json/Observer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/public/js/Json/Observer.js -------------------------------------------------------------------------------- /src/Resources/public/js/Json/Renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/public/js/Json/Renderer.js -------------------------------------------------------------------------------- /src/Resources/public/js/Json/Renderer/Constraint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/public/js/Json/Renderer/Constraint.js -------------------------------------------------------------------------------- /src/Resources/public/js/Json/Renderer/Default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/public/js/Json/Renderer/Default.js -------------------------------------------------------------------------------- /src/Resources/public/js/Json/Renderer/Number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/public/js/Json/Renderer/Number.js -------------------------------------------------------------------------------- /src/Resources/public/js/Json/Renderer/Select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/public/js/Json/Renderer/Select.js -------------------------------------------------------------------------------- /src/Resources/public/js/Json/Renderer/SelectFromUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/public/js/Json/Renderer/SelectFromUrl.js -------------------------------------------------------------------------------- /src/Resources/public/js/Json/Storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/public/js/Json/Storage.js -------------------------------------------------------------------------------- /src/Resources/public/js/inittable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/public/js/inittable.js -------------------------------------------------------------------------------- /src/Resources/public/js/options-grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/public/js/options-grid.js -------------------------------------------------------------------------------- /src/Resources/public/js/product/field/choices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/public/js/product/field/choices.js -------------------------------------------------------------------------------- /src/Resources/public/js/product/field/table-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/public/js/product/field/table-field.js -------------------------------------------------------------------------------- /src/Resources/public/js/tablecolumnview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/public/js/tablecolumnview.js -------------------------------------------------------------------------------- /src/Resources/public/less/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/public/less/index.less -------------------------------------------------------------------------------- /src/Resources/public/less/tableattribute.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/public/less/tableattribute.less -------------------------------------------------------------------------------- /src/Resources/public/templates/product/field/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/public/templates/product/field/table.html -------------------------------------------------------------------------------- /src/Resources/translations/jsmessages.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/translations/jsmessages.de.xlf -------------------------------------------------------------------------------- /src/Resources/translations/jsmessages.en.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/translations/jsmessages.en.xlf -------------------------------------------------------------------------------- /src/Resources/translations/messages.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/translations/messages.de.xlf -------------------------------------------------------------------------------- /src/Resources/translations/messages.en.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/translations/messages.en.xlf -------------------------------------------------------------------------------- /src/Resources/views/Attribute/Tab/value.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Resources/views/Attribute/Tab/value.html.twig -------------------------------------------------------------------------------- /src/Validator/ConstraintFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Validator/ConstraintFactory.php -------------------------------------------------------------------------------- /src/Validator/ConstraintGuesser/TableGuesser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Validator/ConstraintGuesser/TableGuesser.php -------------------------------------------------------------------------------- /src/Validator/Constraints/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Validator/Constraints/Table.php -------------------------------------------------------------------------------- /src/Validator/Constraints/TableValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/src/Validator/Constraints/TableValidator.php -------------------------------------------------------------------------------- /tests/AttributeType/TableTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/tests/AttributeType/TableTypeTest.php -------------------------------------------------------------------------------- /tests/Form/Extension/AttributeOptionTypeExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/tests/Form/Extension/AttributeOptionTypeExtensionTest.php -------------------------------------------------------------------------------- /tests/Kernel/EnterpriseFilterStubPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/tests/Kernel/EnterpriseFilterStubPass.php -------------------------------------------------------------------------------- /tests/Kernel/PublicServiceCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/tests/Kernel/PublicServiceCompilerPass.php -------------------------------------------------------------------------------- /tests/Kernel/TestKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/tests/Kernel/TestKernel.php -------------------------------------------------------------------------------- /tests/Kernel/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/tests/Kernel/config/bundles.php -------------------------------------------------------------------------------- /tests/Kernel/config/packages/test/ee-services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/tests/Kernel/config/packages/test/ee-services.yml -------------------------------------------------------------------------------- /tests/Kernel/config/packages/test/imports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/tests/Kernel/config/packages/test/imports.yml -------------------------------------------------------------------------------- /tests/Kernel/config/packages/test/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/tests/Kernel/config/packages/test/services.yml -------------------------------------------------------------------------------- /tests/Kernel/config/packages/test/tableattribute.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/tests/Kernel/config/packages/test/tableattribute.yml -------------------------------------------------------------------------------- /tests/Pim/TagsAndServiceOverridesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/tests/Pim/TagsAndServiceOverridesTest.php -------------------------------------------------------------------------------- /tests/Provider/Field/TableFieldProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/tests/Provider/Field/TableFieldProviderTest.php -------------------------------------------------------------------------------- /tests/Validator/ConstraintGuesser/TableGuesserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/tests/Validator/ConstraintGuesser/TableGuesserTest.php -------------------------------------------------------------------------------- /tests/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/public/js/require-paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbit/akeneo-table-attribute-bundle/HEAD/tests/public/js/require-paths.js -------------------------------------------------------------------------------- /tests/var/cache/test/Flagbit_Bundle_TableAttributeBundle_Test_Kernel_TestKernelTestContainer.php.lock: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------