fix(dependencies): Update package dependencies and project metadata
This commit is contained in:
@ -1,8 +1,8 @@
|
||||
/**
|
||||
* autocreated commitinfo by @pushrocks/commitinfo
|
||||
* autocreated commitinfo by @push.rocks/commitinfo
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@signature.digital_private/catalog',
|
||||
version: '1.0.58',
|
||||
description: 'a catalog containing components for e-signing'
|
||||
name: '@signature.digital/catalog',
|
||||
version: '1.0.59',
|
||||
description: 'A comprehensive catalog of customizable web components designed for building and managing e-signature applications.'
|
||||
}
|
||||
|
@ -8,7 +8,7 @@ import {
|
||||
cssManager,
|
||||
domtools,
|
||||
} from '@design.estate/dees-element';
|
||||
import * as tsIso from '../../ts_iso/index.js';
|
||||
|
||||
import * as plugins from '../plugins.js';
|
||||
|
||||
declare global {
|
||||
@ -20,16 +20,16 @@ declare global {
|
||||
@customElement('sdig-contracteditor')
|
||||
export class ContractEditor extends DeesElement {
|
||||
public static demo = () => html` <sdig-contracteditor
|
||||
.contract=${tsIso.demoContract}
|
||||
.contract=${plugins.sdDemodata.demoContract}
|
||||
></sdig-contracteditor> `;
|
||||
|
||||
// INSTANCE
|
||||
public localStateInstance = new domtools.plugins.smartstate.Smartstate();
|
||||
public contractState =
|
||||
this.localStateInstance.getStatePart<plugins.portablecontract.IPortableContract>('contract');
|
||||
this.localStateInstance.getStatePart<plugins.sdInterfaces.IPortableContract>('contract');
|
||||
|
||||
@property({ type: Object })
|
||||
public contract: plugins.portablecontract.IPortableContract;
|
||||
public contract: plugins.sdInterfaces.IPortableContract;
|
||||
|
||||
public async firstUpdated(_changedProperties: Map<string | number | symbol, unknown>) {
|
||||
super.firstUpdated(_changedProperties);
|
||||
|
@ -1,8 +1,12 @@
|
||||
// @signature.digital scope
|
||||
import * as portablecontract from '@signature.digital/portablecontract';
|
||||
import * as sdDemodata from '@signature.digital/tools/demodata';
|
||||
import * as sdInterfaces from '@signature.digital/tools/interfaces';
|
||||
import * as sdTools from '@signature.digital/tools';
|
||||
|
||||
export {
|
||||
portablecontract,
|
||||
sdDemodata,
|
||||
sdInterfaces,
|
||||
sdTools,
|
||||
}
|
||||
|
||||
// @design.estate scope
|
||||
|
Reference in New Issue
Block a user