Merge pull request #1758 from umbraco/chore/align-numeric-fields

remove the unused 'allowDecimals' configuration and the "Integer" property editor
This commit is contained in:
Jacob Overgaard
2024-05-07 09:49:35 +02:00
committed by GitHub
3 changed files with 3 additions and 35 deletions

View File

@@ -988,7 +988,7 @@ export const data: Array<UmbMockDataTypeModel> = [
id: 'dt-integer',
parent: null,
editorAlias: 'Umbraco.Integer',
editorUiAlias: 'Umb.PropertyEditorUi.Integer',
editorUiAlias: 'Umb.PropertyEditorUi.Number',
hasChildren: false,
isFolder: false,
isDeletable: true,

View File

@@ -6,7 +6,7 @@ export const manifests: Array<ManifestTypes> = [
name: 'Integer',
alias: 'Umbraco.Integer',
meta: {
defaultPropertyEditorUiAlias: 'Umb.PropertyEditorUi.Integer',
defaultPropertyEditorUiAlias: 'Umb.PropertyEditorUi.Number',
settings: {
properties: [
{

View File

@@ -2,35 +2,7 @@ import { manifests as decimalSchemaManifests } from './Umbraco.Decimal.js';
import { manifests as integerSchemaManifests } from './Umbraco.Integer.js';
import type { ManifestTypes } from '@umbraco-cms/backoffice/extension-registry';
// TODO: we don't really want this config value to be changed from the UI. We need a way to handle hidden config properties.
const allowDecimalsConfig = {
alias: 'allowDecimals',
label: 'Allow decimals',
propertyEditorUiAlias: 'Umb.PropertyEditorUi.Toggle',
};
export const manifests: Array<ManifestTypes> = [
{
type: 'propertyEditorUi',
alias: 'Umb.PropertyEditorUi.Integer',
name: 'Integer Property Editor UI',
element: () => import('./property-editor-ui-number.element.js'),
meta: {
label: 'Integer',
propertyEditorSchemaAlias: 'Umbraco.Integer',
icon: 'icon-autofill',
group: 'common',
settings: {
properties: [allowDecimalsConfig],
defaultData: [
{
alias: 'allowDecimals',
value: false,
},
],
},
},
},
{
type: 'propertyEditorUi',
alias: 'Umb.PropertyEditorUi.Decimal',
@@ -42,12 +14,8 @@ export const manifests: Array<ManifestTypes> = [
icon: 'icon-autofill',
group: 'common',
settings: {
properties: [allowDecimalsConfig],
properties: [],
defaultData: [
{
alias: 'allowDecimals',
value: true,
},
{
alias: 'step',
value: '0.01',