@progressive-development/pd-forms 0.7.14 → 0.8.2
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/pd-button-group.d.ts +1 -0
- package/dist/pd-button-group.d.ts.map +1 -1
- package/dist/pd-button-group.js +6 -1
- package/dist/pd-icon-button-select-group.d.ts +3 -1
- package/dist/pd-icon-button-select-group.d.ts.map +1 -1
- package/dist/pd-icon-button-select-group.js +14 -2
- package/dist/pd-icon-panel-button.d.ts.map +1 -1
- package/dist/pd-icon-panel-button.js +22 -17
- package/dist/stories/pd-button-group.stories.d.ts +1 -0
- package/dist/stories/pd-button-group.stories.d.ts.map +1 -1
- package/dist/stories/pd-icon-button-select-group.stories.d.ts +1 -0
- package/dist/stories/pd-icon-button-select-group.stories.d.ts.map +1 -1
- package/dist/styles/shared-input-field-styles.d.ts.map +1 -1
- package/dist/styles/shared-input-field-styles.js +4 -2
- package/dist/types.d.ts +1 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -7,6 +7,7 @@ export declare class PdButtonGroup extends PdBaseUI {
|
|
|
7
7
|
private _selectedButtons;
|
|
8
8
|
static styles: CSSResultGroup;
|
|
9
9
|
willUpdate(changedProps: PropertyValues<this>): void;
|
|
10
|
+
reset(selectedValue: number): void;
|
|
10
11
|
render(): import('lit-html').TemplateResult<1>;
|
|
11
12
|
private onClick;
|
|
12
13
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pd-button-group.d.ts","sourceRoot":"","sources":["../src/pd-button-group.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,cAAc,EAAE,cAAc,EAAE,MAAM,KAAK,CAAC;AAEhE,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAErC,OAAO,2BAA2B,CAAC;AAEnC,qBACa,aAAc,SAAQ,QAAQ;IAEzC,UAAU,EAAE,UAAU,EAAE,CAAM;IAG9B,SAAS,EAAE,MAAM,EAAE,CAAM;IAGzB,OAAO,CAAC,gBAAgB,CAAgB;IAExC,OAAgB,MAAM,EAAE,cAAc,CA0CpC;IAEO,UAAU,CAAC,YAAY,EAAE,cAAc,CAAC,IAAI,CAAC,GAAG,IAAI;
|
|
1
|
+
{"version":3,"file":"pd-button-group.d.ts","sourceRoot":"","sources":["../src/pd-button-group.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,cAAc,EAAE,cAAc,EAAE,MAAM,KAAK,CAAC;AAEhE,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAErC,OAAO,2BAA2B,CAAC;AAEnC,qBACa,aAAc,SAAQ,QAAQ;IAEzC,UAAU,EAAE,UAAU,EAAE,CAAM;IAG9B,SAAS,EAAE,MAAM,EAAE,CAAM;IAGzB,OAAO,CAAC,gBAAgB,CAAgB;IAExC,OAAgB,MAAM,EAAE,cAAc,CA0CpC;IAEO,UAAU,CAAC,YAAY,EAAE,cAAc,CAAC,IAAI,CAAC,GAAG,IAAI;IAWtD,KAAK,CAAC,aAAa,EAAE,MAAM;IAIzB,MAAM;IAkBf,OAAO,CAAC,OAAO;CAYhB"}
|
package/dist/pd-button-group.js
CHANGED
|
@@ -20,10 +20,14 @@ let PdButtonGroup = class extends PdBaseUI {
|
|
|
20
20
|
this._selectedButtons = [];
|
|
21
21
|
}
|
|
22
22
|
willUpdate(changedProps) {
|
|
23
|
-
|
|
23
|
+
var _a;
|
|
24
|
+
if (changedProps.has("initValue") && ((_a = this.initValue) == null ? void 0 : _a.length) > 0 && this._selectedButtons.length === 0) {
|
|
24
25
|
this._selectedButtons = [...this.initValue];
|
|
25
26
|
}
|
|
26
27
|
}
|
|
28
|
+
reset(selectedValue) {
|
|
29
|
+
this._selectedButtons = [selectedValue];
|
|
30
|
+
}
|
|
27
31
|
render() {
|
|
28
32
|
return html`
|
|
29
33
|
<div class="button-group">
|
|
@@ -33,6 +37,7 @@ let PdButtonGroup = class extends PdBaseUI {
|
|
|
33
37
|
?selected="${this._selectedButtons.includes(index)}"
|
|
34
38
|
buttonText="${data.text || ""}"
|
|
35
39
|
pdButtonIcon="${data.pdIcon || ""}"
|
|
40
|
+
?disabled="${data.disabled === true}"
|
|
36
41
|
@button-clicked="${() => this.onClick(index)}"
|
|
37
42
|
></pd-icon-panel-button>
|
|
38
43
|
`
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import { CSSResultGroup, PropertyValues } from 'lit';
|
|
2
|
-
import { PdBaseUI } from './pd-base-ui';
|
|
2
|
+
import { PdBaseUI } from './pd-base-ui.js';
|
|
3
3
|
import { ButtonData } from './types.js';
|
|
4
4
|
export declare class PdIconButtonSelectGroup extends PdBaseUI {
|
|
5
5
|
options: ButtonData[];
|
|
6
6
|
initValue: number;
|
|
7
7
|
private _selectedValue;
|
|
8
|
+
private _buttonGroupEl;
|
|
8
9
|
static styles: CSSResultGroup;
|
|
9
10
|
willUpdate(changedProps: PropertyValues<this>): void;
|
|
11
|
+
reset(selectedValue: number): void;
|
|
10
12
|
render(): import('lit-html').TemplateResult<1> | "";
|
|
11
13
|
private handleSelectionChange;
|
|
12
14
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pd-icon-button-select-group.d.ts","sourceRoot":"","sources":["../src/pd-icon-button-select-group.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,cAAc,EAAE,cAAc,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"pd-icon-button-select-group.d.ts","sourceRoot":"","sources":["../src/pd-icon-button-select-group.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,cAAc,EAAE,cAAc,EAAE,MAAM,KAAK,CAAC;AAGhE,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAExC,OAAO,2BAA2B,CAAC;AACnC,OAAO,sBAAsB,CAAC;AAE9B,qBACa,uBAAwB,SAAQ,QAAQ;IAEnD,OAAO,EAAE,UAAU,EAAE,CAAM;IAG3B,SAAS,EAAE,MAAM,CAAM;IAGvB,OAAO,CAAC,cAAc,CAAc;IAGpC,OAAO,CAAC,cAAc,CAAM;IAE5B,OAAgB,MAAM,EAAE,cAAc,CAcpC;IAEO,UAAU,CAAC,YAAY,EAAE,cAAc,CAAC,IAAI,CAAC,GAAG,IAAI;IAWtD,KAAK,CAAC,aAAa,EAAE,MAAM;IAOzB,MAAM;IAwBf,OAAO,CAAC,qBAAqB;CAe9B"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { css, html } from "lit";
|
|
2
|
-
import { property, state, customElement } from "lit/decorators.js";
|
|
2
|
+
import { property, state, query, customElement } from "lit/decorators.js";
|
|
3
3
|
import { PdBaseUI } from "./pd-base-ui.js";
|
|
4
4
|
import "./pd-icon-panel-button.js";
|
|
5
5
|
import "./pd-button-group.js";
|
|
@@ -18,12 +18,19 @@ let PdIconButtonSelectGroup = class extends PdBaseUI {
|
|
|
18
18
|
super(...arguments);
|
|
19
19
|
this.options = [];
|
|
20
20
|
this.initValue = -1;
|
|
21
|
+
this._selectedValue = -1;
|
|
21
22
|
}
|
|
22
23
|
willUpdate(changedProps) {
|
|
23
|
-
if (changedProps.has("initValue") && this.initValue
|
|
24
|
+
if (changedProps.has("initValue") && this.initValue > 0 && this._selectedValue === -1) {
|
|
24
25
|
this._selectedValue = this.initValue;
|
|
25
26
|
}
|
|
26
27
|
}
|
|
28
|
+
reset(selectedValue) {
|
|
29
|
+
this._selectedValue = selectedValue;
|
|
30
|
+
if (this._buttonGroupEl) {
|
|
31
|
+
this._buttonGroupEl.reset(selectedValue);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
27
34
|
render() {
|
|
28
35
|
if (!this.options || this.options.length === 0) {
|
|
29
36
|
return "";
|
|
@@ -37,6 +44,7 @@ let PdIconButtonSelectGroup = class extends PdBaseUI {
|
|
|
37
44
|
.pdButtonIcon=${(selectedData == null ? void 0 : selectedData.pdIcon) ?? ""}
|
|
38
45
|
>
|
|
39
46
|
<pd-button-group
|
|
47
|
+
id="buttonGroupId"
|
|
40
48
|
class="button-group-style"
|
|
41
49
|
.buttonList=${this.options}
|
|
42
50
|
.initValue=${[this._selectedValue]}
|
|
@@ -57,6 +65,7 @@ let PdIconButtonSelectGroup = class extends PdBaseUI {
|
|
|
57
65
|
composed: true
|
|
58
66
|
})
|
|
59
67
|
);
|
|
68
|
+
e.stopPropagation();
|
|
60
69
|
}
|
|
61
70
|
};
|
|
62
71
|
PdIconButtonSelectGroup.styles = [
|
|
@@ -83,6 +92,9 @@ __decorateClass([
|
|
|
83
92
|
__decorateClass([
|
|
84
93
|
state()
|
|
85
94
|
], PdIconButtonSelectGroup.prototype, "_selectedValue", 2);
|
|
95
|
+
__decorateClass([
|
|
96
|
+
query("#buttonGroupId")
|
|
97
|
+
], PdIconButtonSelectGroup.prototype, "_buttonGroupEl", 2);
|
|
86
98
|
PdIconButtonSelectGroup = __decorateClass([
|
|
87
99
|
customElement("pd-icon-button-select-group")
|
|
88
100
|
], PdIconButtonSelectGroup);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pd-icon-panel-button.d.ts","sourceRoot":"","sources":["../src/pd-icon-panel-button.ts"],"names":[],"mappings":"AACA;;;GAGG;AAEH,OAAO,EAAE,cAAc,EAAa,MAAM,KAAK,CAAC;AAGhD,OAAO,0CAA0C,CAAC;AAClD,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAOxC,qBACa,iBAAkB,SAAQ,QAAQ;IAE7C,YAAY,CAAC,EAAE,MAAM,CAAC;IAGtB,UAAU,EAAE,MAAM,CAAQ;IAG1B,KAAK,CAAC,EAAE,MAAM,CAAC;IAGf,WAAW,EAAE,OAAO,CAAS;IAG7B,OAAO,EAAE,OAAO,CAAS;IAGzB,QAAQ,EAAE,OAAO,CAAS;IAG1B,OAAO,EAAE,OAAO,CAAS;IAGzB,kBAAkB,EAAE,MAAM,CAAM;IAGhC,SAAS,EAAE,OAAO,CAAS;IAI3B,OAAO,CAAC,cAAc,CAAkB;IAGxC,OAAO,CAAC,UAAU,CAAkB;IAEpC,OAAgB,MAAM,EAAE,cAAc,
|
|
1
|
+
{"version":3,"file":"pd-icon-panel-button.d.ts","sourceRoot":"","sources":["../src/pd-icon-panel-button.ts"],"names":[],"mappings":"AACA;;;GAGG;AAEH,OAAO,EAAE,cAAc,EAAa,MAAM,KAAK,CAAC;AAGhD,OAAO,0CAA0C,CAAC;AAClD,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAOxC,qBACa,iBAAkB,SAAQ,QAAQ;IAE7C,YAAY,CAAC,EAAE,MAAM,CAAC;IAGtB,UAAU,EAAE,MAAM,CAAQ;IAG1B,KAAK,CAAC,EAAE,MAAM,CAAC;IAGf,WAAW,EAAE,OAAO,CAAS;IAG7B,OAAO,EAAE,OAAO,CAAS;IAGzB,QAAQ,EAAE,OAAO,CAAS;IAG1B,OAAO,EAAE,OAAO,CAAS;IAGzB,kBAAkB,EAAE,MAAM,CAAM;IAGhC,SAAS,EAAE,OAAO,CAAS;IAI3B,OAAO,CAAC,cAAc,CAAkB;IAGxC,OAAO,CAAC,UAAU,CAAkB;IAEpC,OAAgB,MAAM,EAAE,cAAc,CA6OpC;IAEF,iBAAiB;IAKjB,oBAAoB;IAKpB,OAAO,CAAC,WAAW,CAEjB;IAGF,MAAM;IA8CN,OAAO,CAAC,UAAU;IAOlB,OAAO,CAAC,cAAc;IAsBtB,OAAO,CAAC,YAAY;CAQrB"}
|
|
@@ -131,9 +131,9 @@ PdIconPanelButton.styles = [
|
|
|
131
131
|
display: inline-flex;
|
|
132
132
|
align-items: center;
|
|
133
133
|
justify-content: center;
|
|
134
|
-
gap: 0.5rem;
|
|
134
|
+
gap: var(--pd-icon-button-gap, 0.5rem);
|
|
135
135
|
|
|
136
|
-
height: var(--pd-icon-button-height,
|
|
136
|
+
height: var(--pd-icon-button-height, auto);
|
|
137
137
|
line-height: var(--pd-icon-button-line-height, 1);
|
|
138
138
|
padding: var(--pd-icon-button-padding, 0 1rem);
|
|
139
139
|
|
|
@@ -166,6 +166,26 @@ PdIconPanelButton.styles = [
|
|
|
166
166
|
font-size: var(--pd-icon-button-font-size, 1.5rem);
|
|
167
167
|
font-weight: bold;
|
|
168
168
|
font-family: var(--pd-default-font-title-family);
|
|
169
|
+
padding: 0.55rem 0;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.button-icon {
|
|
173
|
+
padding: 0.3rem 0;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.toggle-button {
|
|
177
|
+
padding-left: var(--pd-icon-button-gap, 0.5rem);
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.loader {
|
|
181
|
+
border: 12px solid var(--pd-secondary-col);
|
|
182
|
+
border-top: 12px solid var(--pd-secondary-light-col);
|
|
183
|
+
border-radius: 50%;
|
|
184
|
+
width: 10px;
|
|
185
|
+
height: 10px;
|
|
186
|
+
animation: spin 2s linear infinite;
|
|
187
|
+
|
|
188
|
+
margin: 0.3rem 0.1rem 0.3rem 0;
|
|
169
189
|
}
|
|
170
190
|
|
|
171
191
|
:host(:not([disabled]):not([_timerDisabled])) .icon-button-style:hover {
|
|
@@ -297,17 +317,6 @@ PdIconPanelButton.styles = [
|
|
|
297
317
|
transform-origin: bottom right;
|
|
298
318
|
}
|
|
299
319
|
|
|
300
|
-
.loader {
|
|
301
|
-
border: 12px solid var(--pd-secondary-col);
|
|
302
|
-
border-top: 12px solid var(--pd-secondary-light-col);
|
|
303
|
-
border-radius: 50%;
|
|
304
|
-
width: 12px;
|
|
305
|
-
height: 12px;
|
|
306
|
-
animation: spin 2s linear infinite;
|
|
307
|
-
|
|
308
|
-
margin-right: 0.5rem;
|
|
309
|
-
}
|
|
310
|
-
|
|
311
320
|
:host([selected]:not([disabled]):not([_timerDisabled]))
|
|
312
321
|
.icon-button-style {
|
|
313
322
|
background-color: var(
|
|
@@ -327,10 +336,6 @@ PdIconPanelButton.styles = [
|
|
|
327
336
|
text-shadow: none;
|
|
328
337
|
}
|
|
329
338
|
|
|
330
|
-
.toggle-button {
|
|
331
|
-
padding-left: 0.5rem;
|
|
332
|
-
}
|
|
333
|
-
|
|
334
339
|
@keyframes spin {
|
|
335
340
|
0% {
|
|
336
341
|
transform: rotate(0deg);
|
|
@@ -16,4 +16,5 @@ export declare const EventLogging: Story;
|
|
|
16
16
|
export declare const IconGroup: Story;
|
|
17
17
|
export declare const VerticalIconGroup: Story;
|
|
18
18
|
export declare const ColorCustomizedGroup: Story;
|
|
19
|
+
export declare const WithDisabledButtons: Story;
|
|
19
20
|
//# sourceMappingURL=pd-button-group.stories.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pd-button-group.stories.d.ts","sourceRoot":"","sources":["../../src/stories/pd-button-group.stories.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AAEhE,OAAO,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"pd-button-group.stories.d.ts","sourceRoot":"","sources":["../../src/stories/pd-button-group.stories.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AAEhE,OAAO,uBAAuB,CAAC;AAgB/B,QAAA,MAAM,IAAI;;;;CAIM,CAAC;AAEjB,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC;AAEtB,eAAO,MAAM,iBAAiB,EAAE,KAI/B,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,KAOlC,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,KAQ3B,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,KAOhC,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,KAOlC,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,KAIhC,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,KAS1B,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,KAWvB,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,KAY/B,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,KAmBlC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,KAIjC,CAAC"}
|
|
@@ -16,5 +16,6 @@ declare const meta: {
|
|
|
16
16
|
export default meta;
|
|
17
17
|
type Story = StoryObj;
|
|
18
18
|
export declare const Default: Story;
|
|
19
|
+
export declare const WithDisabledButtons: Story;
|
|
19
20
|
export declare const InitSelectionSecond: Story;
|
|
20
21
|
//# sourceMappingURL=pd-icon-button-select-group.stories.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pd-icon-button-select-group.stories.d.ts","sourceRoot":"","sources":["../../src/stories/pd-icon-button-select-group.stories.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AAEhE,OAAO,mCAAmC,CAAC;
|
|
1
|
+
{"version":3,"file":"pd-icon-button-select-group.stories.d.ts","sourceRoot":"","sources":["../../src/stories/pd-icon-button-select-group.stories.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AAEhE,OAAO,mCAAmC,CAAC;AAI3C,QAAA,MAAM,IAAI;;;;;;;;;;;;;CAeM,CAAC;AAEjB,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC;AActB,eAAO,MAAM,OAAO,EAAE,KAQrB,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,KAQjC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,KAQjC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shared-input-field-styles.d.ts","sourceRoot":"","sources":["../../src/styles/shared-input-field-styles.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAIH;;GAEG;AACH,eAAO,MAAM,sBAAsB,
|
|
1
|
+
{"version":3,"file":"shared-input-field-styles.d.ts","sourceRoot":"","sources":["../../src/styles/shared-input-field-styles.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAIH;;GAEG;AACH,eAAO,MAAM,sBAAsB,yBAqKlC,CAAC"}
|
|
@@ -57,12 +57,14 @@ const SharedInputFieldStyles = css`
|
|
|
57
57
|
--pd-input-icon-size,
|
|
58
58
|
calc(var(--pd-input-field-height, 2rem) * 0.9)
|
|
59
59
|
);
|
|
60
|
-
--pd-icon-col-active: var(--pd-input-icon-color,
|
|
60
|
+
--pd-icon-col-active: var(--pd-input-icon-color, var(--pd-default-col));
|
|
61
61
|
top: 2px;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
.infield-icon:hover {
|
|
65
|
-
|
|
65
|
+
/* Soll nur da sein, wenn es auch eine action zu dem icon gibt
|
|
66
|
+
cursor: pointer;
|
|
67
|
+
*/
|
|
66
68
|
}
|
|
67
69
|
|
|
68
70
|
/*
|
package/dist/types.d.ts
CHANGED
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,GAAG,CAAC;IACX,KAAK,EAAE,OAAO,CAAC;IACf,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,OAAO,CAAC;IAClB,KAAK,EAAE,OAAO,CAAC;IACf,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC/B,OAAO,EAAE,WAAW,CAAC;CACtB;AAED,MAAM,MAAM,iBAAiB,GAAG,CAC9B,KAAK,EAAE,GAAG,KACP,MAAM,GAAG,IAAI,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;AAE5C,MAAM,MAAM,WAAW,GAAG,MAAM,GAAG,QAAQ,GAAG,MAAM,GAAG,KAAK,GAAG,OAAO,CAAC;AAEvE,eAAO,MAAM,KAAK,UAAU,CAAC;AAE7B,MAAM,WAAW,UAAU;IACzB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,GAAG,CAAC;IACX,KAAK,EAAE,OAAO,CAAC;IACf,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,OAAO,CAAC;IAClB,KAAK,EAAE,OAAO,CAAC;IACf,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC/B,OAAO,EAAE,WAAW,CAAC;CACtB;AAED,MAAM,MAAM,iBAAiB,GAAG,CAC9B,KAAK,EAAE,GAAG,KACP,MAAM,GAAG,IAAI,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;AAE5C,MAAM,MAAM,WAAW,GAAG,MAAM,GAAG,QAAQ,GAAG,MAAM,GAAG,KAAK,GAAG,OAAO,CAAC;AAEvE,eAAO,MAAM,KAAK,UAAU,CAAC;AAE7B,MAAM,WAAW,UAAU;IACzB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED;;;GAGG;AACH,MAAM,MAAM,cAAc,GACtB,IAAI,GACJ,KAAK,GACL,MAAM,GACN,kBAAkB,GAClB,YAAY,GACZ,iBAAiB,GACjB,aAAa,GACb,kBAAkB,GAClB,UAAU,GACV,UAAU,GACV,cAAc,GACd,kBAAkB,GAClB,OAAO,GACP,oBAAoB,GACpB,cAAc,GACd,gBAAgB,GAChB,eAAe,GACf,eAAe,GACf,eAAe,GACf,gBAAgB,GAChB,gBAAgB,GAChB,gBAAgB,GAChB,gBAAgB,GAChB,SAAS,GACT,cAAc,GACd,aAAa,GACb,KAAK,GACL,kBAAkB,GAClB,cAAc,GACd,eAAe,GACf,WAAW,GACX,MAAM,GACN,UAAU,GACV,YAAY,GACZ,WAAW,GACX,KAAK,GACL,KAAK,GACL,OAAO,GACP,SAAS,GACT,eAAe,GACf,oBAAoB,GACpB,gBAAgB,GAChB,WAAW,GACX,QAAQ,GACR,cAAc,GACd,aAAa,GACb,QAAQ,GACR,SAAS,GACT,sBAAsB,GACtB,oBAAoB,GACpB,UAAU,GACV,eAAe,CAAC"}
|
package/package.json
CHANGED