@shoper/phoenix_design_system 0.25.0 → 0.27.0
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/build/cjs/packages/phoenix/src/components/form/input/input_icon.js +4 -9
- package/build/cjs/packages/phoenix/src/components/form/input/input_icon.js.map +1 -1
- package/build/cjs/packages/phoenix/src/components/icon/icon_constants.js +14 -1
- package/build/cjs/packages/phoenix/src/components/icon/icon_constants.js.map +1 -1
- package/build/cjs/packages/phoenix/src/components/tag/tag_constants.js +2 -2
- package/build/cjs/packages/phoenix/src/index.js +21 -0
- package/build/cjs/packages/phoenix/src/index.js.map +1 -1
- package/build/esm/packages/phoenix/src/components/form/input/input_icon.d.ts +0 -1
- package/build/esm/packages/phoenix/src/components/form/input/input_icon.js +4 -9
- package/build/esm/packages/phoenix/src/components/form/input/input_icon.js.map +1 -1
- package/build/esm/packages/phoenix/src/components/icon/icon_constants.d.ts +13 -0
- package/build/esm/packages/phoenix/src/components/icon/icon_constants.js +14 -2
- package/build/esm/packages/phoenix/src/components/icon/icon_constants.js.map +1 -1
- package/build/esm/packages/phoenix/src/components/messages/base_message_types.js +2 -0
- package/build/esm/packages/phoenix/src/components/messages/base_message_types.js.map +1 -0
- package/build/esm/packages/phoenix/src/components/select/components/select_option.d.ts +11 -0
- package/build/esm/packages/phoenix/src/components/select/components/select_option.js +54 -0
- package/build/esm/packages/phoenix/src/components/select/components/select_option.js.map +1 -0
- package/build/esm/packages/phoenix/src/components/select/components/select_options.d.ts +4 -0
- package/build/esm/packages/phoenix/src/components/select/components/select_options.js +15 -0
- package/build/esm/packages/phoenix/src/components/select/components/select_options.js.map +1 -0
- package/build/esm/packages/phoenix/src/components/select/components/select_search.d.ts +1 -0
- package/build/esm/packages/phoenix/src/components/select/components/select_search.js +2 -0
- package/build/esm/packages/phoenix/src/components/select/components/select_search.js.map +1 -0
- package/build/esm/packages/phoenix/src/components/select/controlers/multi_select_controler.d.ts +1 -0
- package/build/esm/packages/phoenix/src/components/select/controlers/multi_select_controler.js +2 -0
- package/build/esm/packages/phoenix/src/components/select/controlers/multi_select_controler.js.map +1 -0
- package/build/esm/packages/phoenix/src/components/select/controlers/select_controler.d.ts +11 -0
- package/build/esm/packages/phoenix/src/components/select/controlers/select_controler.js +14 -0
- package/build/esm/packages/phoenix/src/components/select/controlers/select_controler.js.map +1 -0
- package/build/esm/packages/phoenix/src/components/select/model/option.d.ts +2 -0
- package/build/esm/packages/phoenix/src/components/select/model/option.js +3 -0
- package/build/esm/packages/phoenix/src/components/select/model/option.js.map +1 -0
- package/build/esm/packages/phoenix/src/components/select/select.d.ts +12 -0
- package/build/esm/packages/phoenix/src/components/select/select.js +62 -0
- package/build/esm/packages/phoenix/src/components/select/select.js.map +1 -0
- package/build/esm/packages/phoenix/src/components/tag/tag_constants.d.ts +2 -2
- package/build/esm/packages/phoenix/src/components/tag/tag_constants.js +2 -2
- package/build/esm/packages/phoenix/src/index.d.ts +3 -0
- package/build/esm/packages/phoenix/src/index.js +3 -0
- package/build/esm/packages/phoenix/src/index.js.map +1 -1
- package/package.json +1 -1
- package/build/cjs/packages/phoenix/src/controllers/keystrokes_controller/keystrokes_controller_constants.js +0 -8
- package/build/cjs/packages/phoenix/src/controllers/keystrokes_controller/keystrokes_controller_constants.js.map +0 -1
- package/build/esm/packages/phoenix/src/controllers/keystrokes_controller/keystrokes_controller_constants.d.ts +0 -1
- package/build/esm/packages/phoenix/src/controllers/keystrokes_controller/keystrokes_controller_constants.js +0 -4
- package/build/esm/packages/phoenix/src/controllers/keystrokes_controller/keystrokes_controller_constants.js.map +0 -1
|
@@ -10,26 +10,21 @@ var phoenix_custom_element = require('../../../core/decorators/phoenix_custom_el
|
|
|
10
10
|
var input_constants = require('./input_constants.js');
|
|
11
11
|
var icon_constants = require('../../icon/icon_constants.js');
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
exports.HInputIcon = HInputIcon_1 = class HInputIcon extends phoenix_light_lit_element.PhoenixLightLitElement {
|
|
13
|
+
exports.HInputIcon = class HInputIcon extends phoenix_light_lit_element.PhoenixLightLitElement {
|
|
15
14
|
connectedCallback() {
|
|
16
15
|
super.connectedCallback();
|
|
17
16
|
this.classList.add(input_constants.INPUT_CONTROL_CSS_CLASSES.inputIcon, icon_constants.ICON_CSS_CLASSES.icon);
|
|
18
17
|
}
|
|
19
18
|
render() {
|
|
20
19
|
super.render();
|
|
21
|
-
return lit.html `
|
|
22
|
-
<svg>
|
|
23
|
-
<use xlink:href="${HInputIcon_1.src}#${this.iconName}"></use>
|
|
24
|
-
</svg>
|
|
25
|
-
`;
|
|
20
|
+
return lit.html ` <h-icon icon-name=${this.iconName}></h-icon> `;
|
|
26
21
|
}
|
|
27
22
|
};
|
|
28
23
|
tslib_es6.__decorate([
|
|
29
|
-
decorators.property({ type: String }),
|
|
24
|
+
decorators.property({ type: String, attribute: 'icon-name' }),
|
|
30
25
|
tslib_es6.__metadata("design:type", String)
|
|
31
26
|
], exports.HInputIcon.prototype, "iconName", void 0);
|
|
32
|
-
exports.HInputIcon =
|
|
27
|
+
exports.HInputIcon = tslib_es6.__decorate([
|
|
33
28
|
phoenix_custom_element.phoenixCustomElement('h-input-icon')
|
|
34
29
|
], exports.HInputIcon);
|
|
35
30
|
//# sourceMappingURL=input_icon.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA,wBAAwB,+CAAmD;AAC3E;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA,wBAAwB,+CAAmD;AAC3E;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -2,9 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
+
const iconBaseClass = 'icon';
|
|
5
6
|
const ICON_CSS_CLASSES = {
|
|
6
|
-
icon:
|
|
7
|
+
icon: iconBaseClass,
|
|
8
|
+
iconFilled: `${iconBaseClass}_filled`,
|
|
9
|
+
iconNoStroke: `${iconBaseClass}_no-stroke`,
|
|
10
|
+
iconSizeL: `${iconBaseClass}_l`,
|
|
11
|
+
iconSizeXl: `${iconBaseClass}_xl`,
|
|
12
|
+
iconSizeXxl: `${iconBaseClass}_xxl`,
|
|
13
|
+
iconClickable: `${iconBaseClass}_clickable`
|
|
14
|
+
};
|
|
15
|
+
const ICON_SIZES_CSS_CLASS_MAP = {
|
|
16
|
+
l: ICON_CSS_CLASSES.iconSizeL,
|
|
17
|
+
xl: ICON_CSS_CLASSES.iconSizeXl,
|
|
18
|
+
xxl: ICON_CSS_CLASSES.iconSizeXxl
|
|
7
19
|
};
|
|
8
20
|
|
|
9
21
|
exports.ICON_CSS_CLASSES = ICON_CSS_CLASSES;
|
|
22
|
+
exports.ICON_SIZES_CSS_CLASS_MAP = ICON_SIZES_CSS_CLASS_MAP;
|
|
10
23
|
//# sourceMappingURL=icon_constants.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -75,6 +75,9 @@ var hint = require('./components/messages/hints/hint.js');
|
|
|
75
75
|
var hint_content = require('./components/messages/hints/hint_content.js');
|
|
76
76
|
var tooltip = require('./components/messages/tooltips/tooltip.js');
|
|
77
77
|
var tooltip_content = require('./components/messages/tooltips/tooltip_content.js');
|
|
78
|
+
var icon = require('./components/icon/icon.js');
|
|
79
|
+
var tag = require('./components/tag/tag.js');
|
|
80
|
+
var tag_remove_button = require('./components/tag/tag_remove_button.js');
|
|
78
81
|
|
|
79
82
|
|
|
80
83
|
|
|
@@ -430,4 +433,22 @@ Object.defineProperty(exports, 'HTooltipContent', {
|
|
|
430
433
|
return tooltip_content.HTooltipContent;
|
|
431
434
|
}
|
|
432
435
|
});
|
|
436
|
+
Object.defineProperty(exports, 'HIcon', {
|
|
437
|
+
enumerable: true,
|
|
438
|
+
get: function () {
|
|
439
|
+
return icon.HIcon;
|
|
440
|
+
}
|
|
441
|
+
});
|
|
442
|
+
Object.defineProperty(exports, 'HTag', {
|
|
443
|
+
enumerable: true,
|
|
444
|
+
get: function () {
|
|
445
|
+
return tag.HTag;
|
|
446
|
+
}
|
|
447
|
+
});
|
|
448
|
+
Object.defineProperty(exports, 'HTagRemoveButton', {
|
|
449
|
+
enumerable: true,
|
|
450
|
+
get: function () {
|
|
451
|
+
return tag_remove_button.HTagRemoveButton;
|
|
452
|
+
}
|
|
453
|
+
});
|
|
433
454
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { PhoenixLightLitElement } from "../../../core/phoenix_light_lit_element/phoenix_light_lit_element";
|
|
2
2
|
import { TemplateResult } from 'lit';
|
|
3
3
|
export declare class HInputIcon extends PhoenixLightLitElement {
|
|
4
|
-
static src: string;
|
|
5
4
|
iconName: string;
|
|
6
5
|
connectedCallback(): void;
|
|
7
6
|
protected render(): TemplateResult;
|
|
@@ -6,26 +6,21 @@ import { phoenixCustomElement } from '../../../core/decorators/phoenix_custom_el
|
|
|
6
6
|
import { INPUT_CONTROL_CSS_CLASSES } from './input_constants.js';
|
|
7
7
|
import { ICON_CSS_CLASSES } from '../../icon/icon_constants.js';
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
let HInputIcon = HInputIcon_1 = class HInputIcon extends PhoenixLightLitElement {
|
|
9
|
+
let HInputIcon = class HInputIcon extends PhoenixLightLitElement {
|
|
11
10
|
connectedCallback() {
|
|
12
11
|
super.connectedCallback();
|
|
13
12
|
this.classList.add(INPUT_CONTROL_CSS_CLASSES.inputIcon, ICON_CSS_CLASSES.icon);
|
|
14
13
|
}
|
|
15
14
|
render() {
|
|
16
15
|
super.render();
|
|
17
|
-
return html `
|
|
18
|
-
<svg>
|
|
19
|
-
<use xlink:href="${HInputIcon_1.src}#${this.iconName}"></use>
|
|
20
|
-
</svg>
|
|
21
|
-
`;
|
|
16
|
+
return html ` <h-icon icon-name=${this.iconName}></h-icon> `;
|
|
22
17
|
}
|
|
23
18
|
};
|
|
24
19
|
__decorate([
|
|
25
|
-
property({ type: String }),
|
|
20
|
+
property({ type: String, attribute: 'icon-name' }),
|
|
26
21
|
__metadata("design:type", String)
|
|
27
22
|
], HInputIcon.prototype, "iconName", void 0);
|
|
28
|
-
HInputIcon =
|
|
23
|
+
HInputIcon = __decorate([
|
|
29
24
|
phoenixCustomElement('h-input-icon')
|
|
30
25
|
], HInputIcon);
|
|
31
26
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA,uCAAuC,+CAAmD;AAC1F;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA,uCAAuC,+CAAmD;AAC1F;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
import { Any } from 'ts-toolbelt';
|
|
1
2
|
export declare const ICON_CSS_CLASSES: {
|
|
2
3
|
readonly icon: "icon";
|
|
4
|
+
readonly iconFilled: "icon_filled";
|
|
5
|
+
readonly iconNoStroke: "icon_no-stroke";
|
|
6
|
+
readonly iconSizeL: "icon_l";
|
|
7
|
+
readonly iconSizeXl: "icon_xl";
|
|
8
|
+
readonly iconSizeXxl: "icon_xxl";
|
|
9
|
+
readonly iconClickable: "icon_clickable";
|
|
3
10
|
};
|
|
11
|
+
export declare const ICON_SIZES_CSS_CLASS_MAP: {
|
|
12
|
+
readonly l: "icon_l";
|
|
13
|
+
readonly xl: "icon_xl";
|
|
14
|
+
readonly xxl: "icon_xxl";
|
|
15
|
+
};
|
|
16
|
+
export declare type TIconSize = Any.Keys<typeof ICON_SIZES_CSS_CLASS_MAP>;
|
|
@@ -1,6 +1,18 @@
|
|
|
1
|
+
const iconBaseClass = 'icon';
|
|
1
2
|
const ICON_CSS_CLASSES = {
|
|
2
|
-
icon:
|
|
3
|
+
icon: iconBaseClass,
|
|
4
|
+
iconFilled: `${iconBaseClass}_filled`,
|
|
5
|
+
iconNoStroke: `${iconBaseClass}_no-stroke`,
|
|
6
|
+
iconSizeL: `${iconBaseClass}_l`,
|
|
7
|
+
iconSizeXl: `${iconBaseClass}_xl`,
|
|
8
|
+
iconSizeXxl: `${iconBaseClass}_xxl`,
|
|
9
|
+
iconClickable: `${iconBaseClass}_clickable`
|
|
10
|
+
};
|
|
11
|
+
const ICON_SIZES_CSS_CLASS_MAP = {
|
|
12
|
+
l: ICON_CSS_CLASSES.iconSizeL,
|
|
13
|
+
xl: ICON_CSS_CLASSES.iconSizeXl,
|
|
14
|
+
xxl: ICON_CSS_CLASSES.iconSizeXxl
|
|
3
15
|
};
|
|
4
16
|
|
|
5
|
-
export { ICON_CSS_CLASSES };
|
|
17
|
+
export { ICON_CSS_CLASSES, ICON_SIZES_CSS_CLASS_MAP };
|
|
6
18
|
//# sourceMappingURL=icon_constants.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;"}
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base_message_types.js","sourceRoot":"","sources":["../../../../../../../src/components/messages/base_message_types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PhoenixLightLitElement } from "../../../core/phoenix_light_lit_element/phoenix_light_lit_element";
|
|
2
|
+
export declare class HSelectOption extends PhoenixLightLitElement {
|
|
3
|
+
selected: boolean;
|
|
4
|
+
disabled: boolean;
|
|
5
|
+
value: string;
|
|
6
|
+
required: boolean;
|
|
7
|
+
hidden: boolean;
|
|
8
|
+
readonly: boolean;
|
|
9
|
+
connectedCallback(): void;
|
|
10
|
+
private _setupEvents;
|
|
11
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { __decorate, __metadata } from "tslib";
|
|
2
|
+
import { PhoenixLightLitElement } from '@phoenixRoot/core/phoenix_light_lit_element/phoenix_light_lit_element';
|
|
3
|
+
import { phoenixCustomElement } from '@phoenixRoot/core/decorators/phoenix_custom_element';
|
|
4
|
+
import { property } from '@lit/reactive-element/decorators.js';
|
|
5
|
+
let HSelectOption = class HSelectOption extends PhoenixLightLitElement {
|
|
6
|
+
constructor() {
|
|
7
|
+
super(...arguments);
|
|
8
|
+
this.selected = false;
|
|
9
|
+
this.disabled = false;
|
|
10
|
+
}
|
|
11
|
+
connectedCallback() {
|
|
12
|
+
super.connectedCallback();
|
|
13
|
+
this.setAttribute('role', 'listitem');
|
|
14
|
+
this.setAttribute('tabindex', '-1');
|
|
15
|
+
this._setupEvents();
|
|
16
|
+
}
|
|
17
|
+
_setupEvents() {
|
|
18
|
+
this.addEventListener('click', () => {
|
|
19
|
+
if (this.disabled)
|
|
20
|
+
return;
|
|
21
|
+
if (!this.selected)
|
|
22
|
+
this.dispatchEvent(new CustomEvent('selectOption.selected'));
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
};
|
|
26
|
+
__decorate([
|
|
27
|
+
property({ type: Boolean }),
|
|
28
|
+
__metadata("design:type", Boolean)
|
|
29
|
+
], HSelectOption.prototype, "selected", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
property({ type: Boolean }),
|
|
32
|
+
__metadata("design:type", Boolean)
|
|
33
|
+
], HSelectOption.prototype, "disabled", void 0);
|
|
34
|
+
__decorate([
|
|
35
|
+
property({ type: String }),
|
|
36
|
+
__metadata("design:type", String)
|
|
37
|
+
], HSelectOption.prototype, "value", void 0);
|
|
38
|
+
__decorate([
|
|
39
|
+
property({ type: Boolean }),
|
|
40
|
+
__metadata("design:type", Boolean)
|
|
41
|
+
], HSelectOption.prototype, "required", void 0);
|
|
42
|
+
__decorate([
|
|
43
|
+
property({ type: Boolean }),
|
|
44
|
+
__metadata("design:type", Boolean)
|
|
45
|
+
], HSelectOption.prototype, "hidden", void 0);
|
|
46
|
+
__decorate([
|
|
47
|
+
property({ type: Boolean }),
|
|
48
|
+
__metadata("design:type", Boolean)
|
|
49
|
+
], HSelectOption.prototype, "readonly", void 0);
|
|
50
|
+
HSelectOption = __decorate([
|
|
51
|
+
phoenixCustomElement('h-select-option')
|
|
52
|
+
], HSelectOption);
|
|
53
|
+
export { HSelectOption };
|
|
54
|
+
//# sourceMappingURL=select_option.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"select_option.js","sourceRoot":"","sources":["../../../../../../../../src/components/select/components/select_option.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,uEAAuE,CAAC;AAC/G,OAAO,EAAE,oBAAoB,EAAE,MAAM,qDAAqD,CAAC;AAC3F,OAAO,EAAE,QAAQ,EAAE,MAAM,qCAAqC,CAAC;AAG/D,IAAa,aAAa,GAA1B,MAAa,aAAc,SAAQ,sBAAsB;IAAzD;;QAEW,aAAQ,GAAY,KAAK,CAAC;QAG1B,aAAQ,GAAY,KAAK,CAAC;IA8BrC,CAAC;IAhBU,iBAAiB;QACpB,KAAK,CAAC,iBAAiB,EAAE,CAAC;QAE1B,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;QACtC,IAAI,CAAC,YAAY,CAAC,UAAU,EAAE,IAAI,CAAC,CAAC;QAEpC,IAAI,CAAC,YAAY,EAAE,CAAC;IACxB,CAAC;IAEO,YAAY;QAChB,IAAI,CAAC,gBAAgB,CAAC,OAAO,EAAE,GAAG,EAAE;YAChC,IAAI,IAAI,CAAC,QAAQ;gBAAE,OAAO;YAE1B,IAAI,CAAC,IAAI,CAAC,QAAQ;gBAAE,IAAI,CAAC,aAAa,CAAC,IAAI,WAAW,CAAC,uBAAuB,CAAC,CAAC,CAAC;QACrF,CAAC,CAAC,CAAC;IACP,CAAC;CACJ,CAAA;AAjCG;IADC,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC;;+CACK;AAGjC;IADC,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC;;+CACK;AAGjC;IADC,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;4CACN;AAGrB;IADC,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC;;+CACH;AAGzB;IADC,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC;;6CACL;AAGvB;IADC,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC;;+CACH;AAjBhB,aAAa;IADzB,oBAAoB,CAAC,iBAAiB,CAAC;GAC3B,aAAa,CAmCzB;SAnCY,aAAa"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { __decorate, __metadata } from "tslib";
|
|
2
|
+
import { phoenixCustomElement } from '@phoenixRoot/core/decorators/phoenix_custom_element';
|
|
3
|
+
import { PhoenixLightLitElement } from '@phoenixRoot/core/phoenix_light_lit_element/phoenix_light_lit_element';
|
|
4
|
+
let HSelectOptions = class HSelectOptions extends PhoenixLightLitElement {
|
|
5
|
+
constructor() {
|
|
6
|
+
super();
|
|
7
|
+
this.setAttribute('role', 'list');
|
|
8
|
+
}
|
|
9
|
+
};
|
|
10
|
+
HSelectOptions = __decorate([
|
|
11
|
+
phoenixCustomElement('h-select-options'),
|
|
12
|
+
__metadata("design:paramtypes", [])
|
|
13
|
+
], HSelectOptions);
|
|
14
|
+
export { HSelectOptions };
|
|
15
|
+
//# sourceMappingURL=select_options.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"select_options.js","sourceRoot":"","sources":["../../../../../../../../src/components/select/components/select_options.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,qDAAqD,CAAC;AAC3F,OAAO,EAAE,sBAAsB,EAAE,MAAM,uEAAuE,CAAC;AAG/G,IAAa,cAAc,GAA3B,MAAa,cAAe,SAAQ,sBAAsB;IACtD;QACI,KAAK,EAAE,CAAC;QAER,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACtC,CAAC;CACJ,CAAA;AANY,cAAc;IAD1B,oBAAoB,CAAC,kBAAkB,CAAC;;GAC5B,cAAc,CAM1B;SANY,cAAc"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"select_search.js","sourceRoot":"","sources":["../../../../../../../../src/components/select/components/select_search.ts"],"names":[],"mappings":""}
|
package/build/esm/packages/phoenix/src/components/select/controlers/multi_select_controler.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/build/esm/packages/phoenix/src/components/select/controlers/multi_select_controler.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"multi_select_controler.js","sourceRoot":"","sources":["../../../../../../../../src/components/select/controlers/multi_select_controler.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ReactiveController, ReactiveControllerHost } from 'lit';
|
|
2
|
+
import { HSelect } from "../select";
|
|
3
|
+
declare type SelectControllerConstructorOptions = {
|
|
4
|
+
host: HSelect & ReactiveControllerHost;
|
|
5
|
+
};
|
|
6
|
+
export declare class SelectController implements ReactiveController {
|
|
7
|
+
#private;
|
|
8
|
+
constructor({ host }: SelectControllerConstructorOptions);
|
|
9
|
+
hostConnected(): void;
|
|
10
|
+
}
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
var _SelectController_host;
|
|
2
|
+
import { __classPrivateFieldGet, __classPrivateFieldSet } from "tslib";
|
|
3
|
+
import 'lit';
|
|
4
|
+
import '@phoenixRoot/components/select/select';
|
|
5
|
+
export class SelectController {
|
|
6
|
+
constructor({ host }) {
|
|
7
|
+
_SelectController_host.set(this, void 0);
|
|
8
|
+
__classPrivateFieldSet(this, _SelectController_host, host, "f");
|
|
9
|
+
__classPrivateFieldGet(this, _SelectController_host, "f").addController(this);
|
|
10
|
+
}
|
|
11
|
+
hostConnected() { }
|
|
12
|
+
}
|
|
13
|
+
_SelectController_host = new WeakMap();
|
|
14
|
+
//# sourceMappingURL=select_controler.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"select_controler.js","sourceRoot":"","sources":["../../../../../../../../src/components/select/controlers/select_controler.ts"],"names":[],"mappings":";;AAAA,OAA2D,KAAK,CAAC;AACjE,OAAwB,uCAAuC,CAAC;AAMhE,MAAM,OAAO,gBAAgB;IAGzB,YAAY,EAAE,IAAI,EAAsC;QAFxD,yCAAwC;QAGpC,uBAAA,IAAI,0BAAS,IAAI,MAAA,CAAC;QAElB,uBAAA,IAAI,8BAAM,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;IACnC,CAAC;IAEM,aAAa,KAAI,CAAC;CAC5B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"option.js","sourceRoot":"","sources":["../../../../../../../../src/components/select/model/option.ts"],"names":[],"mappings":"AAAA,MAAM,OAAO,YAAY;CAAG"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { PhoenixLightLitElement } from "../../core/phoenix_light_lit_element/phoenix_light_lit_element";
|
|
2
|
+
import { TemplateResult } from 'lit-html';
|
|
3
|
+
export interface ISelectController {
|
|
4
|
+
}
|
|
5
|
+
export declare class HSelect extends PhoenixLightLitElement {
|
|
6
|
+
private _selectController;
|
|
7
|
+
private _options;
|
|
8
|
+
watchChildrenRendered: boolean;
|
|
9
|
+
connectedCallback(): void;
|
|
10
|
+
allChildrenRendered(): void;
|
|
11
|
+
protected render(): TemplateResult | undefined;
|
|
12
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { __decorate, __metadata } from "tslib";
|
|
2
|
+
import { PhoenixLightLitElement } from '@phoenixRoot/core/phoenix_light_lit_element/phoenix_light_lit_element';
|
|
3
|
+
import { html } from 'lit-html';
|
|
4
|
+
import { phoenixCustomElement } from '@phoenixRoot/core/decorators/phoenix_custom_element';
|
|
5
|
+
import { SelectController } from '@phoenixRoot/components/select/controlers/select_controler';
|
|
6
|
+
import '@phoenixRoot/components/select/components/select_option';
|
|
7
|
+
import { property } from '@lit/reactive-element/decorators.js';
|
|
8
|
+
let HSelect = class HSelect extends PhoenixLightLitElement {
|
|
9
|
+
constructor() {
|
|
10
|
+
super(...arguments);
|
|
11
|
+
this._options = [];
|
|
12
|
+
this.watchChildrenRendered = true;
|
|
13
|
+
}
|
|
14
|
+
connectedCallback() {
|
|
15
|
+
super.connectedCallback();
|
|
16
|
+
this._selectController = new SelectController({ host: this });
|
|
17
|
+
}
|
|
18
|
+
allChildrenRendered() {
|
|
19
|
+
console.log('all options connected');
|
|
20
|
+
const options = Array.from(this.querySelectorAll('h-select-option')).map((option) => {
|
|
21
|
+
return {
|
|
22
|
+
value: option.value,
|
|
23
|
+
disabled: option.disabled,
|
|
24
|
+
hidden: option.hidden
|
|
25
|
+
};
|
|
26
|
+
});
|
|
27
|
+
console.log('options', options);
|
|
28
|
+
// this._options = options;
|
|
29
|
+
}
|
|
30
|
+
render() {
|
|
31
|
+
console.log('this._options.length', this.hasSlot('content'), this._options.length);
|
|
32
|
+
if (!this.hasSlot('content') && !this._options.length)
|
|
33
|
+
return;
|
|
34
|
+
return html `
|
|
35
|
+
<h-dropdown name="dropdown-1" >
|
|
36
|
+
<h-dropdown-toggler name="dropdown-1">
|
|
37
|
+
select toggler
|
|
38
|
+
</h-dropdown-toggler>
|
|
39
|
+
|
|
40
|
+
<h-dropdown-content name="dropdown-1"">
|
|
41
|
+
${this._options.length &&
|
|
42
|
+
html `
|
|
43
|
+
<h-select-options>
|
|
44
|
+
${this._options.map((option) => html `<h-select-option value=${option.value}>${option.value}</h-select-option>`)}
|
|
45
|
+
</h-select-options>
|
|
46
|
+
`}
|
|
47
|
+
|
|
48
|
+
${this.hasSlot('content') && this.getSlot('content')}
|
|
49
|
+
</h-dropdown-content>
|
|
50
|
+
</h-dropdown>
|
|
51
|
+
`;
|
|
52
|
+
}
|
|
53
|
+
};
|
|
54
|
+
__decorate([
|
|
55
|
+
property({ type: Array }),
|
|
56
|
+
__metadata("design:type", Array)
|
|
57
|
+
], HSelect.prototype, "_options", void 0);
|
|
58
|
+
HSelect = __decorate([
|
|
59
|
+
phoenixCustomElement('h-select')
|
|
60
|
+
], HSelect);
|
|
61
|
+
export { HSelect };
|
|
62
|
+
//# sourceMappingURL=select.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"select.js","sourceRoot":"","sources":["../../../../../../../src/components/select/select.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,uEAAuE,CAAC;AAC/G,OAAO,EAAE,IAAI,EAAkB,MAAM,UAAU,CAAC;AAChD,OAAO,EAAE,oBAAoB,EAAE,MAAM,qDAAqD,CAAC;AAC3F,OAAO,EAAE,gBAAgB,EAAE,MAAM,4DAA4D,CAAC;AAC9F,OAA8B,yDAAyD,CAAC;AACxF,OAAO,EAAE,QAAQ,EAAE,MAAM,qCAAqC,CAAC;AAK/D,IAAa,OAAO,GAApB,MAAa,OAAQ,SAAQ,sBAAsB;IAAnD;;QAIY,aAAQ,GAAU,EAAE,CAAC;QAEtB,0BAAqB,GAAG,IAAI,CAAC;IA8CxC,CAAC;IA7CU,iBAAiB;QACpB,KAAK,CAAC,iBAAiB,EAAE,CAAC;QAE1B,IAAI,CAAC,iBAAiB,GAAG,IAAI,gBAAgB,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;IAClE,CAAC;IAEM,mBAAmB;QACtB,OAAO,CAAC,GAAG,CAAC,uBAAuB,CAAC,CAAC;QACrC,MAAM,OAAO,GAAG,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAgB,iBAAiB,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,EAAE;YAC/F,OAAO;gBACH,KAAK,EAAE,MAAM,CAAC,KAAK;gBACnB,QAAQ,EAAE,MAAM,CAAC,QAAQ;gBACzB,MAAM,EAAE,MAAM,CAAC,MAAM;aACxB,CAAC;QACN,CAAC,CAAC,CAAC;QAEH,OAAO,CAAC,GAAG,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;QAChC,2BAA2B;IAC/B,CAAC;IAES,MAAM;QACZ,OAAO,CAAC,GAAG,CAAC,sBAAsB,EAAE,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;QACnF,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM;YAAE,OAAO;QAE9D,OAAO,IAAI,CAAA;;;;;;;sBAQK,IAAI,CAAC,QAAQ,CAAC,MAAM;YACpB,IAAI,CAAA;;kCAEM,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,IAAI,CAAA,0BAA0B,MAAM,CAAC,KAAK,IAAI,MAAM,CAAC,KAAK,oBAAoB,CAAC;;yBAG3H;;sBAEE,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;;;SAG/D,CAAC;IACN,CAAC;CACJ,CAAA;AAhDG;IADC,QAAQ,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;yCACG;AAJpB,OAAO;IADnB,oBAAoB,CAAC,UAAU,CAAC;GACpB,OAAO,CAoDnB;SApDY,OAAO"}
|
|
@@ -5,6 +5,6 @@ export declare const TAG_CSS_CLASSES: {
|
|
|
5
5
|
};
|
|
6
6
|
export declare const TAG_REMOVE_ICON_SLOT_NAME = "remove-icon";
|
|
7
7
|
export declare const TAG_EVENT_NAMES: {
|
|
8
|
-
readonly click: "click";
|
|
9
|
-
readonly remove: "remove";
|
|
8
|
+
readonly click: "tag.click";
|
|
9
|
+
readonly remove: "tag.remove";
|
|
10
10
|
};
|
|
@@ -6,8 +6,8 @@ const TAG_CSS_CLASSES = {
|
|
|
6
6
|
};
|
|
7
7
|
const TAG_REMOVE_ICON_SLOT_NAME = 'remove-icon';
|
|
8
8
|
const TAG_EVENT_NAMES = {
|
|
9
|
-
click: 'click',
|
|
10
|
-
remove: 'remove'
|
|
9
|
+
click: 'tag.click',
|
|
10
|
+
remove: 'tag.remove'
|
|
11
11
|
};
|
|
12
12
|
|
|
13
13
|
export { TAG_CSS_CLASSES, TAG_EVENT_NAMES, TAG_REMOVE_ICON_SLOT_NAME };
|
|
@@ -83,3 +83,6 @@ export { HHint } from "./components/messages/hints/hint";
|
|
|
83
83
|
export { HHintContent } from "./components/messages/hints/hint_content";
|
|
84
84
|
export { HTooltip } from "./components/messages/tooltips/tooltip";
|
|
85
85
|
export { HTooltipContent } from "./components/messages/tooltips/tooltip_content";
|
|
86
|
+
export { HIcon } from "./components/icon/icon";
|
|
87
|
+
export { HTag } from "./components/tag/tag";
|
|
88
|
+
export { HTagRemoveButton } from "./components/tag/tag_remove_button";
|
|
@@ -71,4 +71,7 @@ export { HHint } from './components/messages/hints/hint.js';
|
|
|
71
71
|
export { HHintContent } from './components/messages/hints/hint_content.js';
|
|
72
72
|
export { HTooltip } from './components/messages/tooltips/tooltip.js';
|
|
73
73
|
export { HTooltipContent } from './components/messages/tooltips/tooltip_content.js';
|
|
74
|
+
export { HIcon } from './components/icon/icon.js';
|
|
75
|
+
export { HTag } from './components/tag/tag.js';
|
|
76
|
+
export { HTagRemoveButton } from './components/tag/tag_remove_button.js';
|
|
74
77
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const KEYSTROKE_DELAY_IN_MS = 500;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;"}
|