@limetech/lime-elements 39.44.3 → 39.44.4
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 +2575 -936
- package/dist/cjs/limel-table.cjs.entry.js +346 -112
- package/dist/collection/components/form/form.test-schemas.js +15 -0
- package/dist/collection/components/table/table.css +6 -0
- package/dist/esm/limel-form.entry.js +2568 -929
- package/dist/esm/limel-table.entry.js +346 -112
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/p-1fb4bfa9.entry.js +13 -0
- package/dist/lime-elements/p-31713caf.entry.js +1 -0
- package/dist/types/components/form/form.test-schemas.d.ts +1 -0
- package/package.json +6 -6
- package/dist/lime-elements/p-7f1de09b.entry.js +0 -13
- package/dist/lime-elements/p-c1ceade7.entry.js +0 -1
|
@@ -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: {
|
|
@@ -701,6 +701,12 @@
|
|
|
701
701
|
text-overflow: ellipsis;
|
|
702
702
|
outline: none;
|
|
703
703
|
}
|
|
704
|
+
.tabulator-row .tabulator-cell .tabulator-tick {
|
|
705
|
+
fill: #2DC214;
|
|
706
|
+
}
|
|
707
|
+
.tabulator-row .tabulator-cell .tabulator-cross {
|
|
708
|
+
fill: #CE1515;
|
|
709
|
+
}
|
|
704
710
|
.tabulator-row .tabulator-cell.tabulator-row-header {
|
|
705
711
|
border-right: 1px solid #999;
|
|
706
712
|
border-bottom: 1px solid #aaa;
|