@limetech/lime-elements 39.44.1 → 39.44.2-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/dist/cjs/limel-form.cjs.entry.js +2568 -929
- package/dist/collection/components/form/form.test-schemas.js +15 -0
- package/dist/esm/limel-form.entry.js +2570 -931
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/p-d247df34.entry.js +13 -0
- package/dist/types/components/form/form.test-schemas.d.ts +1 -0
- package/package.json +4 -4
- package/dist/lime-elements/p-09fb0765.entry.js +0 -13
|
@@ -376,6 +376,21 @@ export const topLevelStringCustomComponentSchema = {
|
|
|
376
376
|
},
|
|
377
377
|
},
|
|
378
378
|
};
|
|
379
|
+
export const stringWithDefaultCustomComponentSchema = {
|
|
380
|
+
type: 'object',
|
|
381
|
+
properties: {
|
|
382
|
+
icon: {
|
|
383
|
+
type: 'string',
|
|
384
|
+
title: 'Icon',
|
|
385
|
+
default: 'decision',
|
|
386
|
+
lime: { component: { name: 'limel-input-field' } },
|
|
387
|
+
},
|
|
388
|
+
name: {
|
|
389
|
+
type: 'string',
|
|
390
|
+
title: 'Name',
|
|
391
|
+
},
|
|
392
|
+
},
|
|
393
|
+
};
|
|
379
394
|
export const arrayItemWithDependenciesSchema = {
|
|
380
395
|
type: 'object',
|
|
381
396
|
properties: {
|