overview-components 1.0.46 → 1.0.48
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/dist/assets/illustration/no-content.d.ts +6 -0
- package/dist/assets/illustration/no-content.d.ts.map +1 -0
- package/dist/assets/illustration/no-content.js +167 -0
- package/dist/assets/illustration/no-content.js.map +1 -0
- package/dist/assets/illustration/no-preview.d.ts +6 -0
- package/dist/assets/illustration/no-preview.d.ts.map +1 -0
- package/dist/assets/illustration/no-preview.js +133 -0
- package/dist/assets/illustration/no-preview.js.map +1 -0
- package/dist/assets/illustration/not-found.d.ts +6 -0
- package/dist/assets/illustration/not-found.d.ts.map +1 -0
- package/dist/assets/illustration/not-found.js +106 -0
- package/dist/assets/illustration/not-found.js.map +1 -0
- package/dist/assets/illustration/settings-illustration.d.ts +6 -0
- package/dist/assets/illustration/settings-illustration.d.ts.map +1 -0
- package/dist/assets/illustration/settings-illustration.js +176 -0
- package/dist/assets/illustration/settings-illustration.js.map +1 -0
- package/dist/components/components-settings/section-tab-settings.d.ts +44 -0
- package/dist/components/components-settings/section-tab-settings.d.ts.map +1 -0
- package/dist/components/components-settings/section-tab-settings.js +279 -0
- package/dist/components/components-settings/section-tab-settings.js.map +1 -0
- package/dist/components/lit-attachments-tab.d.ts +2 -2
- package/dist/components/lit-attachments-tab.d.ts.map +1 -1
- package/dist/components/lit-attachments-tab.js +2 -2
- package/dist/components/lit-attachments-tab.js.map +1 -1
- package/dist/components/lit-case-variables-tab.d.ts +1 -2
- package/dist/components/lit-case-variables-tab.d.ts.map +1 -1
- package/dist/components/lit-case-variables-tab.js +31 -34
- package/dist/components/lit-case-variables-tab.js.map +1 -1
- package/dist/components/lit-data-grid-tanstack.d.ts +1 -1
- package/dist/components/lit-data-grid-tanstack.d.ts.map +1 -1
- package/dist/components/lit-data-grid-tanstack.js +1 -1
- package/dist/components/lit-data-grid-tanstack.js.map +1 -1
- package/dist/components/lit-section-tab.d.ts +12 -17
- package/dist/components/lit-section-tab.d.ts.map +1 -1
- package/dist/components/lit-section-tab.js +39 -173
- package/dist/components/lit-section-tab.js.map +1 -1
- package/dist/components/lit-tabs-overview.d.ts +1 -1
- package/dist/components/lit-tabs-overview.d.ts.map +1 -1
- package/dist/components/lit-tabs-overview.js +1 -1
- package/dist/components/lit-tabs-overview.js.map +1 -1
- package/dist/schemas/index.d.ts +2 -1
- package/dist/schemas/index.d.ts.map +1 -1
- package/dist/schemas/index.js +2 -1
- package/dist/schemas/index.js.map +1 -1
- package/dist/schemas/lit-case-variables-tab-rows.schema.d.ts +87 -93
- package/dist/schemas/lit-case-variables-tab-rows.schema.d.ts.map +1 -1
- package/dist/schemas/lit-case-variables-tab-rows.schema.js +2 -8
- package/dist/schemas/lit-case-variables-tab-rows.schema.js.map +1 -1
- package/dist/schemas/lit-case-variables-tab.schema.d.ts +87 -93
- package/dist/schemas/lit-case-variables-tab.schema.d.ts.map +1 -1
- package/dist/schemas/lit-section-tab-schema.d.ts +20 -0
- package/dist/schemas/lit-section-tab-schema.d.ts.map +1 -0
- package/dist/schemas/lit-section-tab-schema.js +21 -0
- package/dist/schemas/lit-section-tab-schema.js.map +1 -0
- package/dist/shared/lit-icon.d.ts +1 -1
- package/dist/shared/lit-icon.d.ts.map +1 -1
- package/dist/shared/lit-icon.js +0 -3
- package/dist/shared/lit-icon.js.map +1 -1
- package/dist/shared/lit-modal.d.ts +4 -3
- package/dist/shared/lit-modal.d.ts.map +1 -1
- package/dist/shared/lit-modal.js +59 -42
- package/dist/shared/lit-modal.js.map +1 -1
- package/dist/shared/lit-settings.d.ts +25 -0
- package/dist/shared/lit-settings.d.ts.map +1 -0
- package/dist/shared/lit-settings.js +77 -0
- package/dist/shared/lit-settings.js.map +1 -0
- package/dist/shared/lit-text-field.js +1 -1
- package/dist/shared/lit-text-field.js.map +1 -1
- package/dist/shared/simple-popper.d.ts.map +1 -1
- package/dist/shared/simple-popper.js +2 -0
- package/dist/shared/simple-popper.js.map +1 -1
- package/dist/utils/validate-json-schema.d.ts +8 -0
- package/dist/utils/validate-json-schema.d.ts.map +1 -0
- package/dist/utils/validate-json-schema.js +8 -0
- package/dist/utils/validate-json-schema.js.map +1 -0
- package/dist/validators/validator.d.ts +1 -0
- package/dist/validators/validator.d.ts.map +1 -1
- package/dist/validators/validator.js +2 -1
- package/dist/validators/validator.js.map +1 -1
- package/package.json +2 -1
|
@@ -1,42 +1,37 @@
|
|
|
1
1
|
import { LitElement, TemplateResult } from 'lit';
|
|
2
2
|
import { StyleInfo } from 'lit/directives/style-map.js';
|
|
3
|
-
import { Icon } from '../shared/lit-icon.js';
|
|
4
3
|
import '../shared/lit-icon.js';
|
|
4
|
+
import '../shared/lit-settings.js';
|
|
5
5
|
import '../shared/lit-input.js';
|
|
6
6
|
import '../shared/simple-popper.js';
|
|
7
|
-
import '../assets/
|
|
7
|
+
import '../assets/illustration/not-found.js';
|
|
8
8
|
import '../shared/lit-menu.js';
|
|
9
9
|
import '../shared/lit-menu-item.js';
|
|
10
10
|
import '../shared/lit-tooltip.js';
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
};
|
|
11
|
+
import '../shared/lit-modal.js';
|
|
12
|
+
import './components-settings/section-tab-settings.js';
|
|
13
|
+
import { litSectionTabSchema } from '../schemas/lit-section-tab-schema.js';
|
|
14
|
+
import { FromSchema } from 'json-schema-to-ts';
|
|
16
15
|
export type SectionTabProps = {
|
|
17
16
|
sx?: StyleInfo;
|
|
18
17
|
enableSettings?: boolean;
|
|
19
18
|
userLang?: string;
|
|
20
19
|
allowedLang?: string[];
|
|
21
20
|
onSettingsChanged?: Function;
|
|
22
|
-
settingsValue?:
|
|
21
|
+
settingsValue?: FromSchema<typeof litSectionTabSchema>;
|
|
23
22
|
};
|
|
24
23
|
export declare class LitSectionTab extends LitElement {
|
|
25
24
|
sx: StyleInfo;
|
|
26
25
|
enableSettings?: boolean;
|
|
27
26
|
userLang: string;
|
|
28
27
|
allowedLang: string[];
|
|
29
|
-
settingsValue?:
|
|
30
|
-
onSettingsChanged?:
|
|
31
|
-
private
|
|
32
|
-
private isSettingsPopperOpen;
|
|
33
|
-
private filterText;
|
|
28
|
+
settingsValue?: FromSchema<typeof litSectionTabSchema>;
|
|
29
|
+
onSettingsChanged: (value?: FromSchema<typeof litSectionTabSchema>) => void;
|
|
30
|
+
private isOpenModal;
|
|
34
31
|
connectedCallback(): void;
|
|
35
32
|
disconnectedCallback(): void;
|
|
36
|
-
private
|
|
37
|
-
private
|
|
38
|
-
private closeSettingsPopper;
|
|
39
|
-
private toggleSettingsPopper;
|
|
33
|
+
private onSettingsChangedCallback;
|
|
34
|
+
private toggleModal;
|
|
40
35
|
static styles: import("lit").CSSResult[];
|
|
41
36
|
protected render(): TemplateResult | null;
|
|
42
37
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lit-section-tab.d.ts","sourceRoot":"","sources":["../../src/components/lit-section-tab.ts"],"names":[],"mappings":"AACA,OAAO,EAAa,UAAU,EAAE,cAAc,EAAE,MAAM,KAAK,CAAC;AAC5D,OAAO,EAAY,SAAS,EAAE,MAAM,6BAA6B,CAAC;AAClE,OAAO,
|
|
1
|
+
{"version":3,"file":"lit-section-tab.d.ts","sourceRoot":"","sources":["../../src/components/lit-section-tab.ts"],"names":[],"mappings":"AACA,OAAO,EAAa,UAAU,EAAE,cAAc,EAAE,MAAM,KAAK,CAAC;AAC5D,OAAO,EAAY,SAAS,EAAE,MAAM,6BAA6B,CAAC;AAClE,OAAO,uBAAuB,CAAC;AAC/B,OAAO,2BAA2B,CAAC;AACnC,OAAO,wBAAwB,CAAC;AAEhC,OAAO,4BAA4B,CAAC;AACpC,OAAO,qCAAqC,CAAC;AAC7C,OAAO,uBAAuB,CAAC;AAC/B,OAAO,4BAA4B,CAAC;AACpC,OAAO,0BAA0B,CAAC;AAClC,OAAO,wBAAwB,CAAC;AAChC,OAAO,+CAA+C,CAAC;AACvD,OAAO,EAAE,mBAAmB,EAAE,MAAM,sCAAsC,CAAC;AAC3E,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAE/C,MAAM,MAAM,eAAe,GAAG;IAC1B,EAAE,CAAC,EAAE,SAAS,CAAC;IACf,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,iBAAiB,CAAC,EAAE,QAAQ,CAAC;IAC7B,aAAa,CAAC,EAAE,UAAU,CAAC,OAAO,mBAAmB,CAAC,CAAC;CAC1D,CAAC;AAEF,qBACa,aAAc,SAAQ,UAAU;IACb,EAAE,EAAE,SAAS,CAAM;IAClB,cAAc,CAAC,EAAE,OAAO,CAAS;IAClC,QAAQ,EAAE,MAAM,CAAQ;IACzB,WAAW,EAAE,MAAM,EAAE,CAAU;IAC9B,aAAa,CAAC,EAAE,UAAU,CAAC,OAAO,mBAAmB,CAAC,CAAC;IAEnF,iBAAiB,EAAE,CAAC,KAAK,CAAC,EAAE,UAAU,CAAC,OAAO,mBAAmB,CAAC,KAAK,IAAI,CAAY;IAE9E,OAAO,CAAC,WAAW,CAAS;IAErC,iBAAiB;IAIjB,oBAAoB;IAIpB,OAAO,CAAC,yBAAyB;IAMjC,OAAO,CAAC,WAAW;IAInB,MAAM,CAAC,MAAM,4BAqCX;IAEF,SAAS,CAAC,MAAM,IAAI,cAAc,GAAG,IAAI;CAqC5C;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,iBAAiB,EAAE,eAAe,CAAC;KACtC;CACJ"}
|
|
@@ -7,16 +7,17 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
7
7
|
import { customElement, property, state } from 'lit/decorators.js';
|
|
8
8
|
import { css, html, LitElement } from 'lit';
|
|
9
9
|
import { styleMap } from 'lit/directives/style-map.js';
|
|
10
|
-
import { IconArray } from '../shared/lit-icon.js';
|
|
11
10
|
import '../shared/lit-icon.js';
|
|
11
|
+
import '../shared/lit-settings.js';
|
|
12
12
|
import '../shared/lit-input.js';
|
|
13
13
|
import { msg } from '@lit/localize';
|
|
14
14
|
import '../shared/simple-popper.js';
|
|
15
|
-
import '../assets/
|
|
15
|
+
import '../assets/illustration/not-found.js';
|
|
16
16
|
import '../shared/lit-menu.js';
|
|
17
17
|
import '../shared/lit-menu-item.js';
|
|
18
18
|
import '../shared/lit-tooltip.js';
|
|
19
|
-
import
|
|
19
|
+
import '../shared/lit-modal.js';
|
|
20
|
+
import './components-settings/section-tab-settings.js';
|
|
20
21
|
let LitSectionTab = class LitSectionTab extends LitElement {
|
|
21
22
|
constructor() {
|
|
22
23
|
super(...arguments);
|
|
@@ -24,10 +25,8 @@ let LitSectionTab = class LitSectionTab extends LitElement {
|
|
|
24
25
|
this.enableSettings = false;
|
|
25
26
|
this.userLang = 'cs';
|
|
26
27
|
this.allowedLang = ['cs'];
|
|
27
|
-
this.onSettingsChanged = (
|
|
28
|
-
this.
|
|
29
|
-
this.isSettingsPopperOpen = false;
|
|
30
|
-
this.filterText = '';
|
|
28
|
+
this.onSettingsChanged = () => { };
|
|
29
|
+
this.isOpenModal = false;
|
|
31
30
|
}
|
|
32
31
|
connectedCallback() {
|
|
33
32
|
super.connectedCallback();
|
|
@@ -35,172 +34,45 @@ let LitSectionTab = class LitSectionTab extends LitElement {
|
|
|
35
34
|
disconnectedCallback() {
|
|
36
35
|
super.disconnectedCallback();
|
|
37
36
|
}
|
|
38
|
-
|
|
39
|
-
this.
|
|
37
|
+
onSettingsChangedCallback(value) {
|
|
38
|
+
this.settingsValue = { ...value };
|
|
39
|
+
this.onSettingsChanged?.(this.settingsValue);
|
|
40
40
|
}
|
|
41
|
-
|
|
42
|
-
this.
|
|
43
|
-
}
|
|
44
|
-
closeSettingsPopper() {
|
|
45
|
-
this.isSettingsPopperOpen = false;
|
|
46
|
-
}
|
|
47
|
-
toggleSettingsPopper() {
|
|
48
|
-
this.isSettingsPopperOpen = !this.isSettingsPopperOpen;
|
|
41
|
+
toggleModal() {
|
|
42
|
+
this.isOpenModal = !this.isOpenModal;
|
|
49
43
|
}
|
|
50
44
|
render() {
|
|
51
|
-
|
|
52
|
-
|
|
45
|
+
return html ` <div class="section-header">
|
|
46
|
+
<lit-icon
|
|
47
|
+
size="1rem"
|
|
48
|
+
.icon="${this.settingsValue?.titleIcon || 'documents'}"
|
|
49
|
+
></lit-icon>
|
|
50
|
+
<div class="section-title">
|
|
51
|
+
${this.settingsValue?.[`titleLabel_${this.userLang}`] ||
|
|
52
|
+
this.settingsValue?.titleLabel ||
|
|
53
|
+
msg('Zadejte název')}
|
|
54
|
+
</div>
|
|
55
|
+
${this.enableSettings
|
|
53
56
|
? html `
|
|
54
|
-
<div class="section-header">
|
|
55
|
-
<lit-icon
|
|
56
|
-
size="1rem"
|
|
57
|
-
.icon="${this.settingsValue?.titleIcon || 'documents'}"
|
|
58
|
-
></lit-icon>
|
|
59
|
-
<div class="section-title">
|
|
60
|
-
${this.settingsValue?.[`titleLabel`] ?? msg('Zadejte název')}
|
|
61
|
-
</div>
|
|
62
|
-
</div>
|
|
63
|
-
`
|
|
64
|
-
: html `
|
|
65
|
-
<div class="section-header" part="section-header-settings">
|
|
66
57
|
<lit-icon
|
|
67
58
|
style="cursor: pointer"
|
|
68
|
-
|
|
69
|
-
.icon="${this.settingsValue?.titleIcon || 'documents'}"
|
|
70
|
-
@click="${this.toggleCustomPopover}"
|
|
71
|
-
></lit-icon>
|
|
72
|
-
|
|
73
|
-
<simple-popper
|
|
74
|
-
.showing=${this.isOpen}
|
|
75
|
-
.placement=${'bottom-start'}
|
|
76
|
-
.onClose=${() => {
|
|
77
|
-
this.closePopover();
|
|
78
|
-
}}
|
|
79
|
-
.manualOpening=${true}
|
|
80
|
-
>
|
|
81
|
-
<div style="max-height: 12.5rem; height: 12.5rem; overflow-y: auto;">
|
|
82
|
-
<div class="popper-input">
|
|
83
|
-
<lit-input
|
|
84
|
-
.value=${this.filterText}
|
|
85
|
-
.onInput=${(value) => {
|
|
86
|
-
this.filterText = value?.toLowerCase?.() || '';
|
|
87
|
-
}}
|
|
88
|
-
.onClear=${() => {
|
|
89
|
-
this.filterText = '';
|
|
90
|
-
}}
|
|
91
|
-
placeholder="${msg('Zadejte název ikony')}"
|
|
92
|
-
></lit-input>
|
|
93
|
-
</div>
|
|
94
|
-
<lit-menu tabindex="0">
|
|
95
|
-
${(IconArray || [])
|
|
96
|
-
.filter((key) => key.toLowerCase().includes(this.filterText))
|
|
97
|
-
.map((key) => html `
|
|
98
|
-
<lit-menu-item
|
|
99
|
-
@click=${() => {
|
|
100
|
-
this.settingsValue = {
|
|
101
|
-
...this.settingsValue,
|
|
102
|
-
titleIcon: key,
|
|
103
|
-
};
|
|
104
|
-
this.onSettingsChanged?.(this.settingsValue);
|
|
105
|
-
this.closePopover();
|
|
106
|
-
}}
|
|
107
|
-
.isActive=${this.settingsValue?.titleIcon ===
|
|
108
|
-
key}
|
|
109
|
-
>
|
|
110
|
-
<lit-icon
|
|
111
|
-
size="1rem"
|
|
112
|
-
icon="${key}"
|
|
113
|
-
></lit-icon>
|
|
114
|
-
</lit-menu-item>
|
|
115
|
-
`)}
|
|
116
|
-
</lit-menu>
|
|
117
|
-
|
|
118
|
-
${isEqual(filteredKeys.length, 0)
|
|
119
|
-
? html `
|
|
120
|
-
<div
|
|
121
|
-
style="display: flex;flex-direction: column; align-items: center"
|
|
122
|
-
>
|
|
123
|
-
<div
|
|
124
|
-
style="max-height: 7.125rem; max-width: 7.125rem"
|
|
125
|
-
>
|
|
126
|
-
<not-found></not-found>
|
|
127
|
-
</div>
|
|
128
|
-
${msg('Nenalezeno')}
|
|
129
|
-
</div>
|
|
130
|
-
`
|
|
131
|
-
: null}
|
|
132
|
-
</div>
|
|
133
|
-
</simple-popper>
|
|
134
|
-
|
|
135
|
-
<lit-input
|
|
136
|
-
class="input-label"
|
|
137
|
-
.value=${this.settingsValue?.[`titleLabel`]}
|
|
138
|
-
.onInput=${(value) => {
|
|
139
|
-
this.settingsValue = {
|
|
140
|
-
...this.settingsValue,
|
|
141
|
-
[`titleLabel`]: value?.toUpperCase?.(),
|
|
142
|
-
};
|
|
143
|
-
}}
|
|
144
|
-
.onBlur=${(val) => {
|
|
145
|
-
this.onSettingsChanged?.(this.settingsValue);
|
|
146
|
-
}}
|
|
147
|
-
.onClear=${() => {
|
|
148
|
-
this.settingsValue = {
|
|
149
|
-
...this.settingsValue,
|
|
150
|
-
[`titleLabel`]: '',
|
|
151
|
-
};
|
|
152
|
-
this.onSettingsChanged?.(this.settingsValue);
|
|
153
|
-
}}
|
|
154
|
-
placeholder="${msg('Zadejte název sekce')}"
|
|
155
|
-
></lit-input>
|
|
156
|
-
|
|
157
|
-
<lit-icon
|
|
158
|
-
@click="${this.toggleSettingsPopper}"
|
|
59
|
+
@click="${this.toggleModal}"
|
|
159
60
|
icon="cog"
|
|
160
61
|
size="1rem"
|
|
161
62
|
></lit-icon>
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
this.
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
<label for=${lang} style="padding-left: 0.5rem"
|
|
176
|
-
>${lang}</label
|
|
177
|
-
>
|
|
178
|
-
<lit-input
|
|
179
|
-
name=${lang}
|
|
180
|
-
placeholder="${msg(`Zadejte název ${lang.toUpperCase()}`)}"
|
|
181
|
-
.value=${this.settingsValue?.[`titleLabel_${lang}`]}
|
|
182
|
-
.onInput=${(val) => {
|
|
183
|
-
this.settingsValue = {
|
|
184
|
-
...this.settingsValue,
|
|
185
|
-
[`titleLabel_${lang}`]: val?.toUpperCase?.(),
|
|
186
|
-
};
|
|
187
|
-
}}
|
|
188
|
-
.onBlur=${(val) => {
|
|
189
|
-
this.onSettingsChanged?.(this.settingsValue);
|
|
190
|
-
}}
|
|
191
|
-
.onClear=${() => {
|
|
192
|
-
this.settingsValue = {
|
|
193
|
-
...this.settingsValue,
|
|
194
|
-
[`titleLabel_${lang}`]: '',
|
|
195
|
-
};
|
|
196
|
-
this.onSettingsChanged?.(this.settingsValue);
|
|
197
|
-
}}
|
|
198
|
-
></lit-input>
|
|
199
|
-
`)}
|
|
200
|
-
</div>
|
|
201
|
-
</simple-popper>
|
|
202
|
-
</div>
|
|
203
|
-
`}
|
|
63
|
+
`
|
|
64
|
+
: null}
|
|
65
|
+
</div>
|
|
66
|
+
<section-tab-settings
|
|
67
|
+
.settingsValue="${this.settingsValue}"
|
|
68
|
+
.onSettingsChangedModal="${this.onSettingsChangedCallback.bind(this)}"
|
|
69
|
+
.allowedLang="${this.allowedLang}"
|
|
70
|
+
.onClose="${() => {
|
|
71
|
+
this.isOpenModal = false;
|
|
72
|
+
}}"
|
|
73
|
+
.isOpenModal="${this.isOpenModal}"
|
|
74
|
+
>
|
|
75
|
+
</section-tab-settings>
|
|
204
76
|
|
|
205
77
|
<div class="section-tab" style=${styleMap(this.sx)}>
|
|
206
78
|
<slot></slot>
|
|
@@ -219,6 +91,7 @@ LitSectionTab.styles = [
|
|
|
219
91
|
|
|
220
92
|
.section-header {
|
|
221
93
|
display: flex;
|
|
94
|
+
gap: 0.5rem;
|
|
222
95
|
align-items: center;
|
|
223
96
|
padding: 0.625rem 1rem 0.625rem 1rem;
|
|
224
97
|
text-transform: uppercase;
|
|
@@ -228,7 +101,6 @@ LitSectionTab.styles = [
|
|
|
228
101
|
font-size: 0.6875rem;
|
|
229
102
|
color: var(--text-secondary, #5d6371);
|
|
230
103
|
font-weight: 600 !important;
|
|
231
|
-
margin-left: 0.5rem;
|
|
232
104
|
}
|
|
233
105
|
|
|
234
106
|
.input-label {
|
|
@@ -261,17 +133,11 @@ __decorate([
|
|
|
261
133
|
property({ type: Object })
|
|
262
134
|
], LitSectionTab.prototype, "settingsValue", void 0);
|
|
263
135
|
__decorate([
|
|
264
|
-
property({
|
|
136
|
+
property({ attribute: false })
|
|
265
137
|
], LitSectionTab.prototype, "onSettingsChanged", void 0);
|
|
266
138
|
__decorate([
|
|
267
139
|
state()
|
|
268
|
-
], LitSectionTab.prototype, "
|
|
269
|
-
__decorate([
|
|
270
|
-
state()
|
|
271
|
-
], LitSectionTab.prototype, "isSettingsPopperOpen", void 0);
|
|
272
|
-
__decorate([
|
|
273
|
-
state()
|
|
274
|
-
], LitSectionTab.prototype, "filterText", void 0);
|
|
140
|
+
], LitSectionTab.prototype, "isOpenModal", void 0);
|
|
275
141
|
LitSectionTab = __decorate([
|
|
276
142
|
customElement('lit-section-tab')
|
|
277
143
|
], LitSectionTab);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lit-section-tab.js","sourceRoot":"","sources":["../../src/components/lit-section-tab.ts"],"names":[],"mappings":";;;;;;AAAA,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AACnE,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,UAAU,EAAkB,MAAM,KAAK,CAAC;AAC5D,OAAO,EAAE,QAAQ,EAAa,MAAM,6BAA6B,CAAC;
|
|
1
|
+
{"version":3,"file":"lit-section-tab.js","sourceRoot":"","sources":["../../src/components/lit-section-tab.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { LitElement, TemplateResult } from 'lit';
|
|
2
2
|
import '../shared/lit-icon.js';
|
|
3
3
|
import '../shared/lit-button.js';
|
|
4
|
-
import '../assets/
|
|
4
|
+
import '../assets/illustration/no-content.js';
|
|
5
5
|
import './lit-section-tab.js';
|
|
6
6
|
export type TabsOverviewProps = {
|
|
7
7
|
tabs?: TabDefinition[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lit-tabs-overview.d.ts","sourceRoot":"","sources":["../../src/components/lit-tabs-overview.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAa,cAAc,EAAE,MAAM,KAAK,CAAC;AAG5D,OAAO,uBAAuB,CAAC;AAC/B,OAAO,yBAAyB,CAAC;AACjC,OAAO,
|
|
1
|
+
{"version":3,"file":"lit-tabs-overview.d.ts","sourceRoot":"","sources":["../../src/components/lit-tabs-overview.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAa,cAAc,EAAE,MAAM,KAAK,CAAC;AAG5D,OAAO,uBAAuB,CAAC;AAC/B,OAAO,yBAAyB,CAAC;AACjC,OAAO,sCAAsC,CAAC;AAC9C,OAAO,sBAAsB,CAAC;AAE9B,MAAM,MAAM,iBAAiB,GAAG;IAC5B,IAAI,CAAC,EAAE,aAAa,EAAE,CAAC;IACvB,oBAAoB,CAAC,EAAE,MAAM,CAAC;CACjC,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,aAAa,CAAC,EAAE,MAAM,CAAC;CAC1B,CAAC;AAEF,qBACa,eAAgB,SAAQ,UAAU;IAChB,IAAI,EAAE,aAAa,EAAE,CAAM;IAC1B,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAEjD,aAAa,EAAE,MAAM,CAAM;IAC3B,OAAO,CAAC,gBAAgB,CAA+B;IAEhE,OAAO,CAAC,SAAS;IAIjB,YAAY;IAQZ,OAAO,CAAC,gBAAgB;IAWxB,MAAM,CAAC,MAAM,4BAkCX;IAEF,SAAS,CAAC,MAAM,IAAI,cAAc,GAAG,IAAI;CAuD5C;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,mBAAmB,EAAE,eAAe,CAAC;KACxC;CACJ"}
|
|
@@ -10,7 +10,7 @@ import { msg } from '@lit/localize';
|
|
|
10
10
|
// components
|
|
11
11
|
import '../shared/lit-icon.js';
|
|
12
12
|
import '../shared/lit-button.js';
|
|
13
|
-
import '../assets/
|
|
13
|
+
import '../assets/illustration/no-content.js';
|
|
14
14
|
import './lit-section-tab.js';
|
|
15
15
|
let LitTabsOverview = class LitTabsOverview extends LitElement {
|
|
16
16
|
constructor() {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lit-tabs-overview.js","sourceRoot":"","sources":["../../src/components/lit-tabs-overview.ts"],"names":[],"mappings":";;;;;;AAAA,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AACnE,OAAO,EAAE,UAAU,EAAE,IAAI,EAAE,GAAG,EAAkB,MAAM,KAAK,CAAC;AAC5D,OAAO,EAAE,GAAG,EAAE,MAAM,eAAe,CAAC;AACpC,aAAa;AACb,OAAO,uBAAuB,CAAC;AAC/B,OAAO,yBAAyB,CAAC;AACjC,OAAO,
|
|
1
|
+
{"version":3,"file":"lit-tabs-overview.js","sourceRoot":"","sources":["../../src/components/lit-tabs-overview.ts"],"names":[],"mappings":"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"}
|
package/dist/schemas/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { litCaseVariablesTabSchema } from './lit-case-variables-tab.schema.js';
|
|
2
2
|
import { litCaseVariablesTabCellSchema } from './lit-case-variables-tab-cell.schema.js';
|
|
3
3
|
import { litCaseVariablesTabRowsSchema } from './lit-case-variables-tab-rows.schema.js';
|
|
4
|
-
|
|
4
|
+
import { litSectionTabSchema } from './lit-section-tab-schema.js';
|
|
5
|
+
export { litCaseVariablesTabSchema, litCaseVariablesTabCellSchema, litCaseVariablesTabRowsSchema, litSectionTabSchema, };
|
|
5
6
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/schemas/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,oCAAoC,CAAC;AAC/E,OAAO,EAAE,6BAA6B,EAAE,MAAM,yCAAyC,CAAC;AACxF,OAAO,EAAE,6BAA6B,EAAE,MAAM,yCAAyC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/schemas/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,oCAAoC,CAAC;AAC/E,OAAO,EAAE,6BAA6B,EAAE,MAAM,yCAAyC,CAAC;AACxF,OAAO,EAAE,6BAA6B,EAAE,MAAM,yCAAyC,CAAC;AACxF,OAAO,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAC;AAElE,OAAO,EACH,yBAAyB,EACzB,6BAA6B,EAC7B,6BAA6B,EAC7B,mBAAmB,GACtB,CAAC"}
|
package/dist/schemas/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { litCaseVariablesTabSchema } from './lit-case-variables-tab.schema.js';
|
|
2
2
|
import { litCaseVariablesTabCellSchema } from './lit-case-variables-tab-cell.schema.js';
|
|
3
3
|
import { litCaseVariablesTabRowsSchema } from './lit-case-variables-tab-rows.schema.js';
|
|
4
|
-
|
|
4
|
+
import { litSectionTabSchema } from './lit-section-tab-schema.js';
|
|
5
|
+
export { litCaseVariablesTabSchema, litCaseVariablesTabCellSchema, litCaseVariablesTabRowsSchema, litSectionTabSchema, };
|
|
5
6
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/schemas/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,oCAAoC,CAAC;AAC/E,OAAO,EAAE,6BAA6B,EAAE,MAAM,yCAAyC,CAAC;AACxF,OAAO,EAAE,6BAA6B,EAAE,MAAM,yCAAyC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/schemas/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,oCAAoC,CAAC;AAC/E,OAAO,EAAE,6BAA6B,EAAE,MAAM,yCAAyC,CAAC;AACxF,OAAO,EAAE,6BAA6B,EAAE,MAAM,yCAAyC,CAAC;AACxF,OAAO,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAC;AAElE,OAAO,EACH,yBAAyB,EACzB,6BAA6B,EAC7B,6BAA6B,EAC7B,mBAAmB,GACtB,CAAC"}
|
|
@@ -1,108 +1,102 @@
|
|
|
1
1
|
export declare const litCaseVariablesTabRowsSchema: {
|
|
2
|
-
readonly type: "
|
|
3
|
-
readonly
|
|
4
|
-
readonly
|
|
5
|
-
|
|
6
|
-
readonly
|
|
2
|
+
readonly type: "array";
|
|
3
|
+
readonly items: {
|
|
4
|
+
readonly type: "object";
|
|
5
|
+
readonly properties: {
|
|
6
|
+
readonly field: {
|
|
7
|
+
readonly type: "string";
|
|
8
|
+
};
|
|
9
|
+
readonly type: {
|
|
10
|
+
readonly type: "string";
|
|
11
|
+
readonly enum: readonly ["string", "button", "link", "date", "currency"];
|
|
12
|
+
};
|
|
13
|
+
readonly headerName: {
|
|
14
|
+
readonly type: "string";
|
|
15
|
+
};
|
|
16
|
+
readonly value: {
|
|
17
|
+
readonly oneOf: readonly [{
|
|
18
|
+
readonly type: "string";
|
|
19
|
+
}, {
|
|
20
|
+
readonly type: "number";
|
|
21
|
+
}, {
|
|
22
|
+
readonly type: "null";
|
|
23
|
+
}];
|
|
24
|
+
};
|
|
25
|
+
readonly size: {
|
|
7
26
|
readonly type: "object";
|
|
8
27
|
readonly properties: {
|
|
9
|
-
readonly
|
|
10
|
-
readonly type: "
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
readonly type: "string";
|
|
14
|
-
readonly enum: readonly ["string", "button", "link", "date", "currency"];
|
|
15
|
-
};
|
|
16
|
-
readonly headerName: {
|
|
17
|
-
readonly type: "string";
|
|
18
|
-
};
|
|
19
|
-
readonly value: {
|
|
20
|
-
readonly oneOf: readonly [{
|
|
21
|
-
readonly type: "string";
|
|
22
|
-
}, {
|
|
23
|
-
readonly type: "number";
|
|
24
|
-
}, {
|
|
25
|
-
readonly type: "null";
|
|
26
|
-
}];
|
|
27
|
-
};
|
|
28
|
-
readonly size: {
|
|
29
|
-
readonly type: "object";
|
|
30
|
-
readonly properties: {
|
|
31
|
-
readonly xs: {
|
|
32
|
-
readonly type: "integer";
|
|
33
|
-
readonly minimum: 1;
|
|
34
|
-
readonly maximum: 4;
|
|
35
|
-
};
|
|
36
|
-
readonly sm: {
|
|
37
|
-
readonly type: "integer";
|
|
38
|
-
readonly minimum: 1;
|
|
39
|
-
readonly maximum: 4;
|
|
40
|
-
};
|
|
41
|
-
readonly md: {
|
|
42
|
-
readonly type: "integer";
|
|
43
|
-
readonly minimum: 1;
|
|
44
|
-
readonly maximum: 4;
|
|
45
|
-
};
|
|
46
|
-
readonly lg: {
|
|
47
|
-
readonly type: "integer";
|
|
48
|
-
readonly minimum: 1;
|
|
49
|
-
readonly maximum: 4;
|
|
50
|
-
};
|
|
51
|
-
readonly xl: {
|
|
52
|
-
readonly type: "integer";
|
|
53
|
-
readonly minimum: 1;
|
|
54
|
-
readonly maximum: 4;
|
|
55
|
-
};
|
|
56
|
-
};
|
|
57
|
-
readonly additionalProperties: false;
|
|
58
|
-
};
|
|
59
|
-
readonly buttonVariant: {
|
|
60
|
-
readonly type: "string";
|
|
61
|
-
};
|
|
62
|
-
readonly buttonFullWidth: {
|
|
63
|
-
readonly type: "boolean";
|
|
64
|
-
};
|
|
65
|
-
readonly href: {
|
|
66
|
-
readonly type: readonly ["string"];
|
|
67
|
-
};
|
|
68
|
-
readonly headerStyle: {
|
|
69
|
-
readonly type: readonly ["object"];
|
|
70
|
-
readonly additionalProperties: true;
|
|
71
|
-
};
|
|
72
|
-
readonly valueStyle: {
|
|
73
|
-
readonly type: readonly ["object"];
|
|
74
|
-
readonly additionalProperties: true;
|
|
28
|
+
readonly xs: {
|
|
29
|
+
readonly type: "integer";
|
|
30
|
+
readonly minimum: 1;
|
|
31
|
+
readonly maximum: 4;
|
|
75
32
|
};
|
|
76
|
-
readonly
|
|
77
|
-
readonly type:
|
|
78
|
-
readonly
|
|
33
|
+
readonly sm: {
|
|
34
|
+
readonly type: "integer";
|
|
35
|
+
readonly minimum: 1;
|
|
36
|
+
readonly maximum: 4;
|
|
79
37
|
};
|
|
80
|
-
readonly
|
|
81
|
-
readonly type:
|
|
38
|
+
readonly md: {
|
|
39
|
+
readonly type: "integer";
|
|
40
|
+
readonly minimum: 1;
|
|
41
|
+
readonly maximum: 4;
|
|
82
42
|
};
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
readonly
|
|
87
|
-
};
|
|
88
|
-
readonly '^tooltip_(cs|en|de|sk|pl|hu|fr|it|es)$': {
|
|
89
|
-
readonly type: "string";
|
|
43
|
+
readonly lg: {
|
|
44
|
+
readonly type: "integer";
|
|
45
|
+
readonly minimum: 1;
|
|
46
|
+
readonly maximum: 4;
|
|
90
47
|
};
|
|
91
|
-
readonly
|
|
92
|
-
readonly
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
readonly type: "number";
|
|
96
|
-
}, {
|
|
97
|
-
readonly type: "null";
|
|
98
|
-
}];
|
|
48
|
+
readonly xl: {
|
|
49
|
+
readonly type: "integer";
|
|
50
|
+
readonly minimum: 1;
|
|
51
|
+
readonly maximum: 4;
|
|
99
52
|
};
|
|
100
53
|
};
|
|
101
|
-
readonly required: readonly ["field"];
|
|
102
54
|
readonly additionalProperties: false;
|
|
103
55
|
};
|
|
56
|
+
readonly buttonVariant: {
|
|
57
|
+
readonly type: "string";
|
|
58
|
+
};
|
|
59
|
+
readonly buttonFullWidth: {
|
|
60
|
+
readonly type: "boolean";
|
|
61
|
+
};
|
|
62
|
+
readonly href: {
|
|
63
|
+
readonly type: readonly ["string"];
|
|
64
|
+
};
|
|
65
|
+
readonly headerStyle: {
|
|
66
|
+
readonly type: readonly ["object"];
|
|
67
|
+
readonly additionalProperties: true;
|
|
68
|
+
};
|
|
69
|
+
readonly valueStyle: {
|
|
70
|
+
readonly type: readonly ["object"];
|
|
71
|
+
readonly additionalProperties: true;
|
|
72
|
+
};
|
|
73
|
+
readonly cellStyle: {
|
|
74
|
+
readonly type: readonly ["object"];
|
|
75
|
+
readonly additionalProperties: true;
|
|
76
|
+
};
|
|
77
|
+
readonly tooltip: {
|
|
78
|
+
readonly type: readonly ["string"];
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
readonly patternProperties: {
|
|
82
|
+
readonly '^headerName_(cs|en|de|sk|pl|hu|fr|it|es)$': {
|
|
83
|
+
readonly type: "string";
|
|
84
|
+
};
|
|
85
|
+
readonly '^tooltip_(cs|en|de|sk|pl|hu|fr|it|es)$': {
|
|
86
|
+
readonly type: "string";
|
|
87
|
+
};
|
|
88
|
+
readonly '^value_(cs|en|de|sk|pl|hu|fr|it|es)$': {
|
|
89
|
+
readonly oneOf: readonly [{
|
|
90
|
+
readonly type: "string";
|
|
91
|
+
}, {
|
|
92
|
+
readonly type: "number";
|
|
93
|
+
}, {
|
|
94
|
+
readonly type: "null";
|
|
95
|
+
}];
|
|
96
|
+
};
|
|
104
97
|
};
|
|
98
|
+
readonly required: readonly ["field"];
|
|
99
|
+
readonly additionalProperties: false;
|
|
105
100
|
};
|
|
106
|
-
readonly additionalProperties: false;
|
|
107
101
|
};
|
|
108
102
|
//# sourceMappingURL=lit-case-variables-tab-rows.schema.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lit-case-variables-tab-rows.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/lit-case-variables-tab-rows.schema.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,6BAA6B
|
|
1
|
+
{"version":3,"file":"lit-case-variables-tab-rows.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/lit-case-variables-tab-rows.schema.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGhC,CAAC"}
|