fix(core): update

This commit is contained in:
2023-10-23 17:26:03 +02:00
parent 52130d67e2
commit 5cec1fea73
12 changed files with 164 additions and 113 deletions

View File

@@ -45,7 +45,7 @@ export class DeesForm extends DeesElement {
public static demo = demoFunc;
public name: string = 'myform';
public changeSubject = new domtools.rxjs.Subject();
public changeSubject = new domtools.plugins.smartrx.rxjs.Subject();
public readyDeferred = domtools.plugins.smartpromise.defer();
public render(): TemplateResult {

View File

@@ -22,7 +22,7 @@ export class DeesInputCheckbox extends DeesElement {
public static demo = () => html`<dees-input-checkbox></dees-input-checkbox>`;
// INSTANCE
public changeSubject = new domtools.rxjs.Subject();
public changeSubject = new domtools.plugins.smartrx.rxjs.Subject();
@property({
type: String,

View File

@@ -20,7 +20,7 @@ export class DeesInputDropdown extends DeesElement {
`
// INSTANCE
public changeSubject = new domtools.rxjs.Subject();
public changeSubject = new domtools.plugins.smartrx.rxjs.Subject();
@property({
type: String,

View File

@@ -22,7 +22,7 @@ export class DeesInputFileupload extends DeesElement {
public static demo = () => html`<dees-input-fileupload .label=${'Attachments'}></dees-input-fileupload>`;
// INSTANCE
public changeSubject = new domtools.rxjs.Subject();
public changeSubject = new domtools.plugins.smartrx.rxjs.Subject();
@property({
type: String,

View File

@@ -48,7 +48,7 @@ export class DeesInputIban extends DeesElement {
})
public value = '';
public changeSubject = new domtools.rxjs.Subject<DeesInputIban>();
public changeSubject = new domtools.plugins.smartrx.rxjs.Subject<DeesInputIban>();
public render(): TemplateResult {
return html`

View File

@@ -12,7 +12,7 @@ export class DeesInputQuantitySelector extends DeesElement {
public static demo = () => html`<dees-input-quantityselector></dees-input-quantityselector>`;
// INSTANCE
public changeSubject = new domtools.rxjs.Subject();
public changeSubject = new domtools.plugins.smartrx.rxjs.Subject();
@property()
public label: string = 'Label';

View File

@@ -12,7 +12,7 @@ export class DeesInputRadio extends DeesElement {
public static demo = () => html`<dees-input-radio></dees-input-radio>`;
// INSTANCE
public changeSubject = new domtools.rxjs.Subject();
public changeSubject = new domtools.plugins.smartrx.rxjs.Subject();
@property({
type: String,

View File

@@ -24,7 +24,7 @@ export class DeesInputText extends DeesElement {
`;
// INSTANCE
public changeSubject = new domtools.rxjs.Subject<DeesInputText>();
public changeSubject = new domtools.plugins.smartrx.rxjs.Subject<DeesInputText>();
@property({
type: String,

View File

@@ -113,7 +113,7 @@ export class DeesTable<T> extends DeesElement {
return this.data;
}
set value(valueArg) {}
public changeSubject = new domtools.rxjs.Subject<DeesTable<T>>();
public changeSubject = new domtools.plugins.smartrx.rxjs.Subject<DeesTable<T>>();
// end dees-form compatibility -----------------------------------------
@property({