@shoper/phoenix_design_system 0.25.0 → 0.26.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.
Files changed (26) hide show
  1. package/build/cjs/packages/phoenix/src/components/form/input/input_icon.js +4 -9
  2. package/build/cjs/packages/phoenix/src/components/form/input/input_icon.js.map +1 -1
  3. package/build/cjs/packages/phoenix/src/components/icon/icon_constants.js +14 -1
  4. package/build/cjs/packages/phoenix/src/components/icon/icon_constants.js.map +1 -1
  5. package/build/cjs/packages/phoenix/src/components/tag/tag_constants.js +2 -2
  6. package/build/cjs/packages/phoenix/src/index.js +21 -0
  7. package/build/cjs/packages/phoenix/src/index.js.map +1 -1
  8. package/build/esm/packages/phoenix/src/components/form/input/input_icon.d.ts +0 -1
  9. package/build/esm/packages/phoenix/src/components/form/input/input_icon.js +4 -9
  10. package/build/esm/packages/phoenix/src/components/form/input/input_icon.js.map +1 -1
  11. package/build/esm/packages/phoenix/src/components/icon/icon_constants.d.ts +13 -0
  12. package/build/esm/packages/phoenix/src/components/icon/icon_constants.js +14 -2
  13. package/build/esm/packages/phoenix/src/components/icon/icon_constants.js.map +1 -1
  14. package/build/esm/packages/phoenix/src/components/messages/base_message_types.js +2 -0
  15. package/build/esm/packages/phoenix/src/components/messages/base_message_types.js.map +1 -0
  16. package/build/esm/packages/phoenix/src/components/tag/tag_constants.d.ts +2 -2
  17. package/build/esm/packages/phoenix/src/components/tag/tag_constants.js +2 -2
  18. package/build/esm/packages/phoenix/src/index.d.ts +3 -0
  19. package/build/esm/packages/phoenix/src/index.js +3 -0
  20. package/build/esm/packages/phoenix/src/index.js.map +1 -1
  21. package/package.json +1 -1
  22. package/build/cjs/packages/phoenix/src/controllers/keystrokes_controller/keystrokes_controller_constants.js +0 -8
  23. package/build/cjs/packages/phoenix/src/controllers/keystrokes_controller/keystrokes_controller_constants.js.map +0 -1
  24. package/build/esm/packages/phoenix/src/controllers/keystrokes_controller/keystrokes_controller_constants.d.ts +0 -1
  25. package/build/esm/packages/phoenix/src/controllers/keystrokes_controller/keystrokes_controller_constants.js +0 -4
  26. 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
- var HInputIcon_1;
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 = HInputIcon_1 = tslib_es6.__decorate([
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;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: '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;"}
@@ -10,8 +10,8 @@ const TAG_CSS_CLASSES = {
10
10
  };
11
11
  const TAG_REMOVE_ICON_SLOT_NAME = 'remove-icon';
12
12
  const TAG_EVENT_NAMES = {
13
- click: 'click',
14
- remove: 'remove'
13
+ click: 'tag.click',
14
+ remove: 'tag.remove'
15
15
  };
16
16
 
17
17
  exports.TAG_CSS_CLASSES = TAG_CSS_CLASSES;
@@ -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
- var HInputIcon_1;
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 = HInputIcon_1 = __decorate([
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;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: '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,2 @@
1
+ export {};
2
+ //# sourceMappingURL=base_message_types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"base_message_types.js","sourceRoot":"","sources":["../../../../../../../src/components/messages/base_message_types.ts"],"names":[],"mappings":""}
@@ -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
@@ -2,7 +2,7 @@
2
2
  "name": "@shoper/phoenix_design_system",
3
3
  "packageManager": "yarn@3.2.0",
4
4
  "sideEffects": false,
5
- "version": "0.25.0",
5
+ "version": "0.26.0",
6
6
  "description": "phoenix design system",
7
7
  "author": "zefirek",
8
8
  "license": "MIT",
@@ -1,8 +0,0 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- const KEYSTROKE_DELAY_IN_MS = 500;
6
-
7
- exports.KEYSTROKE_DELAY_IN_MS = KEYSTROKE_DELAY_IN_MS;
8
- //# sourceMappingURL=keystrokes_controller_constants.js.map
@@ -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,4 +0,0 @@
1
- const KEYSTROKE_DELAY_IN_MS = 500;
2
-
3
- export { KEYSTROKE_DELAY_IN_MS };
4
- //# sourceMappingURL=keystrokes_controller_constants.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;"}