Merge branch 'main' into feature/property-editor-config-v4

This commit is contained in:
Mads Rasmussen
2023-01-20 12:35:33 +01:00
213 changed files with 1749 additions and 817 deletions

View File

@@ -1,5 +1,4 @@
import lodash from 'lodash';
const { kebabCase, camelCase, startCase } = lodash;
import { kebabCase, camelCase, startCase } from 'lodash-es';
const pascalCase = (str) => startCase(str).replace(/ /g, '');
const tagNamePrefix = 'umb-';