Skip to content

Commit

Permalink
[DOCS] Add SelectNumber to Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
nhovratov committed Dec 4, 2024
1 parent 169236f commit 2b2f736
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Documentation/ChangeLog/1.1/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
1.1
===

.. contents::

Features
========

Expand Down Expand Up @@ -79,6 +81,25 @@ else, you can override the default folder by providing the option
vendor/bin/typo3 make:content-block --skeleton-path="my-alternative-skeleton-path"
Field Type SelectNumber
-----------------------

A new field type :ref:`SelectNumber <field_type_select-number>` is added. This
new type allows to have a select field with exclusively integer values. The
database column will also have type :sql:`int`, which saves precious row size.

.. code-block:: yaml
name: example/select-number
fields:
- identifier: select_number
type: SelectNumber
items:
- label: 'The first'
value: 1
- label: 'The second'
value: 2
Deprecations
============

Expand Down

0 comments on commit 2b2f736

Please sign in to comment.