@shoper/phoenix_design_system 1.18.28 → 1.18.29
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/color_swatches/color_swatches.js +0 -41
- package/build/cjs/packages/phoenix/src/components/color_swatches/color_swatches.js.map +1 -1
- package/build/cjs/packages/phoenix/src/index.js +7 -7
- package/build/esm/packages/phoenix/src/components/color_swatches/color_swatches.d.ts +0 -5
- package/build/esm/packages/phoenix/src/components/color_swatches/color_swatches.js +0 -41
- package/build/esm/packages/phoenix/src/components/color_swatches/color_swatches.js.map +1 -1
- package/build/esm/packages/phoenix/src/index.js +1 -1
- package/package.json +1 -1
|
@@ -3,13 +3,11 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var tslib_es6 = require('../../../../../external/tslib/tslib.es6.js');
|
|
6
|
-
var lit = require('lit');
|
|
7
6
|
var decorators = require('lit/decorators');
|
|
8
7
|
var utilities = require('@dreamcommerce/utilities');
|
|
9
8
|
var phoenix_light_lit_element = require('../../core/phoenix_light_lit_element/phoenix_light_lit_element.js');
|
|
10
9
|
var phoenix_custom_element = require('../../core/decorators/phoenix_custom_element.js');
|
|
11
10
|
var keystrokes_controller = require('../../controllers/keystrokes_controller/keystrokes_controller.js');
|
|
12
|
-
require('lit-html');
|
|
13
11
|
var color_swatches_constants = require('./color_swatches_constants.js');
|
|
14
12
|
var color_item_constants = require('./color_item/color_item_constants.js');
|
|
15
13
|
var color_item = require('./color_item/color_item.js');
|
|
@@ -18,7 +16,6 @@ exports.HColorSwatches = class HColorSwatches extends phoenix_light_lit_element.
|
|
|
18
16
|
constructor() {
|
|
19
17
|
super(...arguments);
|
|
20
18
|
this.multiple = false;
|
|
21
|
-
this.devVisualSubcategories = false;
|
|
22
19
|
this.selectedColors = [];
|
|
23
20
|
this.showMoreBtnText = 'Pokaż wszystkie kolory';
|
|
24
21
|
this._setupEvents = () => {
|
|
@@ -142,10 +139,6 @@ exports.HColorSwatches = class HColorSwatches extends phoenix_light_lit_element.
|
|
|
142
139
|
this._$colorSwatchesChildren = [...this.children];
|
|
143
140
|
this._setupEvents();
|
|
144
141
|
this._addCssClasses();
|
|
145
|
-
if (!this.devVisualSubcategories) {
|
|
146
|
-
this.numberOfVisibleColors && this._hideItems(this.numberOfVisibleColors);
|
|
147
|
-
this._showAllItemsEvent();
|
|
148
|
-
}
|
|
149
142
|
this.selectedColors = [...this.querySelectorAll('h-color-item[selected]')];
|
|
150
143
|
this._$colors = [...this.querySelectorAll('h-color-item')];
|
|
151
144
|
}
|
|
@@ -153,26 +146,6 @@ exports.HColorSwatches = class HColorSwatches extends phoenix_light_lit_element.
|
|
|
153
146
|
this.querySelectorAll(color_swatches_constants.COLOR_ITEM_TAG_NAME).forEach(($colorItem) => $colorItem.classList.add(color_swatches_constants.COLOR_SWATCHES_CSS_CLASSES.colorSwatchesItem));
|
|
154
147
|
this.classList.add(color_swatches_constants.COLOR_SWATCHES_CSS_CLASSES.colorSwatches);
|
|
155
148
|
}
|
|
156
|
-
_hideItems(numberOfVisibleColors) {
|
|
157
|
-
if (!this._$colorSwatchesChildren)
|
|
158
|
-
return;
|
|
159
|
-
this._$colorSwatchesChildren.forEach(($colorSwatchesChild, index) => {
|
|
160
|
-
if (index > numberOfVisibleColors - 1) {
|
|
161
|
-
$colorSwatchesChild.setAttribute('hidden', '');
|
|
162
|
-
}
|
|
163
|
-
});
|
|
164
|
-
}
|
|
165
|
-
_showAllItemsEvent() {
|
|
166
|
-
this.addEventListener(color_swatches_constants.COLOR_SWATCHES_EVENT_NAMES.showMore, () => {
|
|
167
|
-
var _a;
|
|
168
|
-
if (!this._$colorSwatchesChildren)
|
|
169
|
-
return;
|
|
170
|
-
this._$colorSwatchesChildren.forEach(($colorSwatchesChild) => {
|
|
171
|
-
$colorSwatchesChild.removeAttribute('hidden');
|
|
172
|
-
});
|
|
173
|
-
(_a = this.querySelector('h-color-swatches-show-more')) === null || _a === void 0 ? void 0 : _a.setAttribute('hidden', '');
|
|
174
|
-
});
|
|
175
|
-
}
|
|
176
149
|
_handleChangeToNextColorItem({ target }) {
|
|
177
150
|
const $colorItem = target;
|
|
178
151
|
const $nextFocusableElement = utilities.UiDomUtils.getNextFocusableElement($colorItem);
|
|
@@ -238,25 +211,11 @@ exports.HColorSwatches = class HColorSwatches extends phoenix_light_lit_element.
|
|
|
238
211
|
super.disconnectedCallback();
|
|
239
212
|
document.body.removeEventListener('keydown', this._focusOnSelectedColor);
|
|
240
213
|
}
|
|
241
|
-
render() {
|
|
242
|
-
if (!this.devVisualSubcategories) {
|
|
243
|
-
return lit.html `
|
|
244
|
-
${this.getSlot('default')}
|
|
245
|
-
${this._$colors.length > this.numberOfVisibleColors
|
|
246
|
-
? lit.html `<h-color-swatches-show-more>${this.showMoreBtnText}</h-color-swatches-show-more>`
|
|
247
|
-
: lit.nothing}
|
|
248
|
-
`;
|
|
249
|
-
}
|
|
250
|
-
}
|
|
251
214
|
};
|
|
252
215
|
tslib_es6.__decorate([
|
|
253
216
|
decorators.property({ type: Boolean }),
|
|
254
217
|
tslib_es6.__metadata("design:type", Boolean)
|
|
255
218
|
], exports.HColorSwatches.prototype, "multiple", void 0);
|
|
256
|
-
tslib_es6.__decorate([
|
|
257
|
-
decorators.property({ type: Boolean, attribute: 'dev-visual-subcategories' }),
|
|
258
|
-
tslib_es6.__metadata("design:type", Boolean)
|
|
259
|
-
], exports.HColorSwatches.prototype, "devVisualSubcategories", void 0);
|
|
260
219
|
tslib_es6.__decorate([
|
|
261
220
|
decorators.property({ type: Number, attribute: 'number-of-visible-colors' }),
|
|
262
221
|
tslib_es6.__metadata("design:type", Number)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA,wBAAwB,4CAAgD;AACxE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;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,4CAAgD;AACxE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -87,7 +87,6 @@ var toggle_button = require('./components/groups/toggle_button_group/toggle_butt
|
|
|
87
87
|
var click_outside_controller_messages = require('./controllers/click_outside_controller/click_outside_controller_messages.js');
|
|
88
88
|
var backdrop = require('./components/backdrop/backdrop.js');
|
|
89
89
|
var color_swatches_control_constants = require('./components/form/color_swatches_control/color_swatches_control_constants.js');
|
|
90
|
-
var show_more_button = require('./components/show-more/show_more_button.js');
|
|
91
90
|
var color_swatches = require('./components/color_swatches/color_swatches.js');
|
|
92
91
|
var color_item = require('./components/color_swatches/color_item/color_item.js');
|
|
93
92
|
var color_swatches_control = require('./components/form/color_swatches_control/color_swatches_control.js');
|
|
@@ -133,6 +132,7 @@ var toggle = require('./components/toggle/toggle.js');
|
|
|
133
132
|
var toggle_button$1 = require('./components/toggle/toggle_button.js');
|
|
134
133
|
var navigator_share = require('./components/navigator/navigator_share/navigator_share.js');
|
|
135
134
|
var navigator_controller = require('./components/navigator/navigator_controller/navigator_controller.js');
|
|
135
|
+
var show_more_button = require('./components/show-more/show_more_button.js');
|
|
136
136
|
var show_more$1 = require('./components/show-more/show_more.js');
|
|
137
137
|
|
|
138
138
|
|
|
@@ -522,12 +522,6 @@ Object.defineProperty(exports, 'HBackdrop', {
|
|
|
522
522
|
}
|
|
523
523
|
});
|
|
524
524
|
exports.COLOR_SWATCHES_CONTROL_EVENT_NAMES = color_swatches_control_constants.COLOR_SWATCHES_CONTROL_EVENT_NAMES;
|
|
525
|
-
Object.defineProperty(exports, 'HShowMoreButton', {
|
|
526
|
-
enumerable: true,
|
|
527
|
-
get: function () {
|
|
528
|
-
return show_more_button.HShowMoreButton;
|
|
529
|
-
}
|
|
530
|
-
});
|
|
531
525
|
Object.defineProperty(exports, 'HColorSwatches', {
|
|
532
526
|
enumerable: true,
|
|
533
527
|
get: function () {
|
|
@@ -785,6 +779,12 @@ Object.defineProperty(exports, 'NavigatorController', {
|
|
|
785
779
|
return navigator_controller.NavigatorController;
|
|
786
780
|
}
|
|
787
781
|
});
|
|
782
|
+
Object.defineProperty(exports, 'HShowMoreButton', {
|
|
783
|
+
enumerable: true,
|
|
784
|
+
get: function () {
|
|
785
|
+
return show_more_button.HShowMoreButton;
|
|
786
|
+
}
|
|
787
|
+
});
|
|
788
788
|
Object.defineProperty(exports, 'HShowMore', {
|
|
789
789
|
enumerable: true,
|
|
790
790
|
get: function () {
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { HColorItem } from "./color_item/color_item";
|
|
2
2
|
import { PhoenixLightLitElement } from "../../core/phoenix_light_lit_element/phoenix_light_lit_element";
|
|
3
|
-
import { TemplateResult } from 'lit-html';
|
|
4
3
|
export declare class HColorSwatches extends PhoenixLightLitElement {
|
|
5
4
|
multiple: boolean;
|
|
6
|
-
devVisualSubcategories: boolean;
|
|
7
5
|
numberOfVisibleColors: number;
|
|
8
6
|
selectedColors: HColorItem[];
|
|
9
7
|
showMoreBtnText: string;
|
|
@@ -13,8 +11,6 @@ export declare class HColorSwatches extends PhoenixLightLitElement {
|
|
|
13
11
|
clearAllColors(): void;
|
|
14
12
|
connectedCallback(): void;
|
|
15
13
|
private _addCssClasses;
|
|
16
|
-
private _hideItems;
|
|
17
|
-
private _showAllItemsEvent;
|
|
18
14
|
private _setupEvents;
|
|
19
15
|
private _setupCheckboxGroupEvents;
|
|
20
16
|
private _setupRadioGroupEvents;
|
|
@@ -34,5 +30,4 @@ export declare class HColorSwatches extends PhoenixLightLitElement {
|
|
|
34
30
|
private _removeExistingColorFromArray;
|
|
35
31
|
private _dispatchColorChangeEvent;
|
|
36
32
|
disconnectedCallback(): void;
|
|
37
|
-
protected render(): TemplateResult | void;
|
|
38
33
|
}
|
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
import { __decorate, __metadata } from '../../../../../external/tslib/tslib.es6.js';
|
|
2
|
-
import { html, nothing } from 'lit';
|
|
3
2
|
import { property } from 'lit/decorators';
|
|
4
3
|
import { UiDomUtils, ArrayUtils } from '@dreamcommerce/utilities';
|
|
5
4
|
import { PhoenixLightLitElement } from '../../core/phoenix_light_lit_element/phoenix_light_lit_element.js';
|
|
6
5
|
import { phoenixCustomElement } from '../../core/decorators/phoenix_custom_element.js';
|
|
7
6
|
import { KeystrokesController } from '../../controllers/keystrokes_controller/keystrokes_controller.js';
|
|
8
|
-
import 'lit-html';
|
|
9
7
|
import { COLOR_SWATCHES_EVENT_NAMES, COLOR_ITEM_TAG_NAME, COLOR_SWATCHES_CSS_CLASSES } from './color_swatches_constants.js';
|
|
10
8
|
import { COLOR_ITEM_SELECTED_ATTRIBUTE } from './color_item/color_item_constants.js';
|
|
11
9
|
import { HColorItem } from './color_item/color_item.js';
|
|
@@ -14,7 +12,6 @@ let HColorSwatches = class HColorSwatches extends PhoenixLightLitElement {
|
|
|
14
12
|
constructor() {
|
|
15
13
|
super(...arguments);
|
|
16
14
|
this.multiple = false;
|
|
17
|
-
this.devVisualSubcategories = false;
|
|
18
15
|
this.selectedColors = [];
|
|
19
16
|
this.showMoreBtnText = 'Pokaż wszystkie kolory';
|
|
20
17
|
this._setupEvents = () => {
|
|
@@ -138,10 +135,6 @@ let HColorSwatches = class HColorSwatches extends PhoenixLightLitElement {
|
|
|
138
135
|
this._$colorSwatchesChildren = [...this.children];
|
|
139
136
|
this._setupEvents();
|
|
140
137
|
this._addCssClasses();
|
|
141
|
-
if (!this.devVisualSubcategories) {
|
|
142
|
-
this.numberOfVisibleColors && this._hideItems(this.numberOfVisibleColors);
|
|
143
|
-
this._showAllItemsEvent();
|
|
144
|
-
}
|
|
145
138
|
this.selectedColors = [...this.querySelectorAll('h-color-item[selected]')];
|
|
146
139
|
this._$colors = [...this.querySelectorAll('h-color-item')];
|
|
147
140
|
}
|
|
@@ -149,26 +142,6 @@ let HColorSwatches = class HColorSwatches extends PhoenixLightLitElement {
|
|
|
149
142
|
this.querySelectorAll(COLOR_ITEM_TAG_NAME).forEach(($colorItem) => $colorItem.classList.add(COLOR_SWATCHES_CSS_CLASSES.colorSwatchesItem));
|
|
150
143
|
this.classList.add(COLOR_SWATCHES_CSS_CLASSES.colorSwatches);
|
|
151
144
|
}
|
|
152
|
-
_hideItems(numberOfVisibleColors) {
|
|
153
|
-
if (!this._$colorSwatchesChildren)
|
|
154
|
-
return;
|
|
155
|
-
this._$colorSwatchesChildren.forEach(($colorSwatchesChild, index) => {
|
|
156
|
-
if (index > numberOfVisibleColors - 1) {
|
|
157
|
-
$colorSwatchesChild.setAttribute('hidden', '');
|
|
158
|
-
}
|
|
159
|
-
});
|
|
160
|
-
}
|
|
161
|
-
_showAllItemsEvent() {
|
|
162
|
-
this.addEventListener(COLOR_SWATCHES_EVENT_NAMES.showMore, () => {
|
|
163
|
-
var _a;
|
|
164
|
-
if (!this._$colorSwatchesChildren)
|
|
165
|
-
return;
|
|
166
|
-
this._$colorSwatchesChildren.forEach(($colorSwatchesChild) => {
|
|
167
|
-
$colorSwatchesChild.removeAttribute('hidden');
|
|
168
|
-
});
|
|
169
|
-
(_a = this.querySelector('h-color-swatches-show-more')) === null || _a === void 0 ? void 0 : _a.setAttribute('hidden', '');
|
|
170
|
-
});
|
|
171
|
-
}
|
|
172
145
|
_handleChangeToNextColorItem({ target }) {
|
|
173
146
|
const $colorItem = target;
|
|
174
147
|
const $nextFocusableElement = UiDomUtils.getNextFocusableElement($colorItem);
|
|
@@ -234,25 +207,11 @@ let HColorSwatches = class HColorSwatches extends PhoenixLightLitElement {
|
|
|
234
207
|
super.disconnectedCallback();
|
|
235
208
|
document.body.removeEventListener('keydown', this._focusOnSelectedColor);
|
|
236
209
|
}
|
|
237
|
-
render() {
|
|
238
|
-
if (!this.devVisualSubcategories) {
|
|
239
|
-
return html `
|
|
240
|
-
${this.getSlot('default')}
|
|
241
|
-
${this._$colors.length > this.numberOfVisibleColors
|
|
242
|
-
? html `<h-color-swatches-show-more>${this.showMoreBtnText}</h-color-swatches-show-more>`
|
|
243
|
-
: nothing}
|
|
244
|
-
`;
|
|
245
|
-
}
|
|
246
|
-
}
|
|
247
210
|
};
|
|
248
211
|
__decorate([
|
|
249
212
|
property({ type: Boolean }),
|
|
250
213
|
__metadata("design:type", Boolean)
|
|
251
214
|
], HColorSwatches.prototype, "multiple", void 0);
|
|
252
|
-
__decorate([
|
|
253
|
-
property({ type: Boolean, attribute: 'dev-visual-subcategories' }),
|
|
254
|
-
__metadata("design:type", Boolean)
|
|
255
|
-
], HColorSwatches.prototype, "devVisualSubcategories", void 0);
|
|
256
215
|
__decorate([
|
|
257
216
|
property({ type: Number, attribute: 'number-of-visible-colors' }),
|
|
258
217
|
__metadata("design:type", Number)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA,uCAAuC,4CAAgD;AACvF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;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,4CAAgD;AACvF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -83,7 +83,6 @@ export { HToggleButton } from './components/groups/toggle_button_group/toggle_bu
|
|
|
83
83
|
export { CLICK_OUTSIDE_CONTROLLER_MESSAGES } from './controllers/click_outside_controller/click_outside_controller_messages.js';
|
|
84
84
|
export { HBackdrop } from './components/backdrop/backdrop.js';
|
|
85
85
|
export { COLOR_SWATCHES_CONTROL_EVENT_NAMES } from './components/form/color_swatches_control/color_swatches_control_constants.js';
|
|
86
|
-
export { HShowMoreButton } from './components/show-more/show_more_button.js';
|
|
87
86
|
export { HColorSwatches } from './components/color_swatches/color_swatches.js';
|
|
88
87
|
export { HColorItem } from './components/color_swatches/color_item/color_item.js';
|
|
89
88
|
export { HColorSwatchesControl } from './components/form/color_swatches_control/color_swatches_control.js';
|
|
@@ -129,5 +128,6 @@ export { HToggle } from './components/toggle/toggle.js';
|
|
|
129
128
|
export { HToggleBtn } from './components/toggle/toggle_button.js';
|
|
130
129
|
export { NavigatorShare } from './components/navigator/navigator_share/navigator_share.js';
|
|
131
130
|
export { NavigatorController } from './components/navigator/navigator_controller/navigator_controller.js';
|
|
131
|
+
export { HShowMoreButton } from './components/show-more/show_more_button.js';
|
|
132
132
|
export { HShowMore } from './components/show-more/show_more.js';
|
|
133
133
|
//# sourceMappingURL=index.js.map
|