@sc-360-v2/storefront-cms-library 0.4.16 → 0.4.17
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.
|
@@ -50,7 +50,6 @@
|
|
|
50
50
|
var(--_ctm-mob-dn-wt-se-sw-cr, var(--_ctm-tab-dn-wt-se-sw-cr, var(--_ctm-dn-wt-se-sw-cr)))
|
|
51
51
|
);
|
|
52
52
|
|
|
53
|
-
padding: var(--_ctm-mob-lt-pg, var(--_ctm-tab-lt-pg, var(--_ctm-lt-pg)));
|
|
54
53
|
// gap: var(
|
|
55
54
|
// --_ctm-mob-lt-it-ad-mn-qy-sg,
|
|
56
55
|
// var(--_ctm-tab-lt-it-ad-mn-qy-sg, var(--_ctm-lt-it-ad-mn-qy-sg))
|
|
@@ -385,7 +384,7 @@
|
|
|
385
384
|
//Dropdown
|
|
386
385
|
.value__selected__new {
|
|
387
386
|
width: 100%;
|
|
388
|
-
padding: 8px 12px;
|
|
387
|
+
// padding: 8px 12px;
|
|
389
388
|
// text-align: left;
|
|
390
389
|
font-family: prepareMediaVariable(--_ctm-dn-wt-se-ft-fy);
|
|
391
390
|
font-size: prepareMediaVariable(--_ctm-dn-wt-se-ft-se);
|
|
@@ -425,10 +424,19 @@
|
|
|
425
424
|
&.open .list {
|
|
426
425
|
display: flex;
|
|
427
426
|
}
|
|
427
|
+
.dropdown__button__wrapper {
|
|
428
|
+
width: 100%;
|
|
429
|
+
padding: var(--_ctm-mob-lt-im-pg, var(--_ctm-tab-lt-im-pg, var(--_ctm-lt-im-pg)));
|
|
430
|
+
.option_select {
|
|
431
|
+
padding: unset;
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
|
|
428
435
|
.est__dropdown__button {
|
|
429
436
|
display: flex;
|
|
430
437
|
align-items: center;
|
|
431
438
|
width: 100%;
|
|
439
|
+
position: relative;
|
|
432
440
|
}
|
|
433
441
|
|
|
434
442
|
.est__dropdown__icon {
|
|
@@ -102,7 +102,8 @@ export declare enum selfEnums {
|
|
|
102
102
|
OPTION_STYLE = "optionStyle",
|
|
103
103
|
HOVER_STATE = "hover",
|
|
104
104
|
SELECTED_STATE = "selected",
|
|
105
|
-
DEFAULT_STATE = "default"
|
|
105
|
+
DEFAULT_STATE = "default",
|
|
106
|
+
TOGGLE_ICON = "toggleIcon"
|
|
106
107
|
}
|
|
107
108
|
export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
|
|
108
109
|
export {};
|
|
@@ -121,8 +121,9 @@ interface selfDesignInterface {
|
|
|
121
121
|
selectorKey: string;
|
|
122
122
|
[key: string]: any;
|
|
123
123
|
};
|
|
124
|
+
[key: string]: any;
|
|
124
125
|
}
|
|
125
|
-
export declare enum
|
|
126
|
+
export declare enum SelectorKeysEnum {
|
|
126
127
|
LAYOUT = "layout",
|
|
127
128
|
CONTENT = "content",
|
|
128
129
|
DESIGN = "design",
|