This commit is contained in:
2025-11-30 22:13:45 +00:00
parent 014fb3080a
commit 19f016a476
9 changed files with 265 additions and 2461 deletions
+1 -2
View File
@@ -7,7 +7,6 @@ import {
unsafeCSS,
css,
type TemplateResult,
subscribe,
} from '@design.estate/dees-element';
import * as plugins from '../../plugins.js';
@@ -25,7 +24,7 @@ declare global {
@customElement('lele-accountnavigation')
export class LeleAccountNavigation extends DeesElement {
@property()
public options: { text: string; id: string }[] = [
accessor options: { text: string; id: string }[] = [
{
id: '1',
text: 'Apps',
+3 -3
View File
@@ -8,7 +8,7 @@ import {
unsafeCSS,
css,
render,
subscribe,
directives,
} from '@design.estate/dees-element';
import sharedStyles from '../sharedstyles.js';
@@ -26,7 +26,7 @@ export class BaseView extends DeesElement {
@property({
type: Array,
})
subscriptions: any[] = [
accessor subscriptions: any[] = [
{
organization: 'org1',
'subscription type': 'workspace.global SaaS',
@@ -111,7 +111,7 @@ export class BaseView extends DeesElement {
<p>
The organization slug corresponds to the organization name:<br />
<span class="slug"
>${subscribe(
>${directives.subscribe(
state.accountState.select((stateArg) => stateArg.newOrg.chosenSlug)
)}</span
>
@@ -24,7 +24,7 @@ export class SubscriptionView extends DeesElement {
@property({
type: Array,
})
subscriptions: any[] = [{
accessor subscriptions: any[] = [{
organization: 'org1',
'subscription type': 'workspace.global SaaS',
price: '4€',
+3 -3
View File
@@ -30,16 +30,16 @@ export class IdpLoginPrompt extends DeesElement {
public static demo = () => html`<idp-loginprompt></idp-loginprompt>`;
@property()
public productOfInterest: string;
accessor productOfInterest: string;
@property()
jwt: string;
accessor jwt: string;
@property({
reflect: true,
type: Object,
})
appData: plugins.idpInterfaces.data.IApp;
accessor appData: plugins.idpInterfaces.data.IApp;
public jwtObserable = new domtools.plugins.smartrx.rxjs.Subject<string>();
+3 -3
View File
@@ -30,16 +30,16 @@ export class IdpRegistrationPrompt extends DeesElement {
public static demo = () => html`<idp-login></idp-login>`;
@property()
public productOfInterest: string;
accessor productOfInterest: string;
@property()
jwt: string;
accessor jwt: string;
@property({
reflect: true,
type: Object,
})
appData: plugins.idpInterfaces.data.IApp;
accessor appData: plugins.idpInterfaces.data.IApp;
public jwtObserable = new domtools.plugins.smartrx.rxjs.Subject<string>();
+2 -2
View File
@@ -15,10 +15,10 @@ import {
@customElement('idp-registration-stepper')
export class IdpRegistrationStepper extends DeesElement {
@state()
private usedSubTemplate: TemplateResult;
accessor usedSubTemplate: TemplateResult;
@state()
private storedData = {
accessor storedData = {
validationTokenUrlParam: 'string',
email: '',
refreshToken: '',