@keenmate/web-multiselect 1.0.0-rc11 → 1.1.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.
@@ -11,8 +11,8 @@
11
11
  //
12
12
  // Usage from outside Shadow DOM:
13
13
  // multi-select {
14
- // --ml-accent-color: #10b981;
15
- // --ml-input-border-radius: 0.5rem;
14
+ // --ms-accent-color: #10b981;
15
+ // --ms-input-border-radius: 0.5rem;
16
16
  // }
17
17
  // ==============================================================================
18
18
 
@@ -24,366 +24,512 @@
24
24
  // ==========================================================================
25
25
 
26
26
  // Accent Colors
27
- --ml-accent-color: #{$ml-accent-color};
28
- --ml-accent-color-hover: #{$ml-accent-color-hover};
29
- --ml-accent-color-active: #{$ml-accent-color-active};
27
+ --ms-accent-color: #{$ml-accent-color};
28
+ --ms-accent-color-hover: #{$ml-accent-color-hover};
29
+ --ms-accent-color-active: #{$ml-accent-color-active};
30
30
 
31
31
  // Text Colors
32
- --ml-text-primary: #{$ml-text-primary};
33
- --ml-text-secondary: #{$ml-text-secondary};
34
- --ml-text-white: #{$ml-text-white};
32
+ --ms-text-primary: #{$ml-text-primary};
33
+ --ms-text-secondary: #{$ml-text-secondary};
34
+ --ms-text-white: #{$ml-text-white};
35
35
 
36
36
  // Background Colors
37
- --ml-primary-bg: #{$ml-primary-bg};
38
- --ml-primary-bg-hover: #{$ml-primary-bg-hover};
39
- --ml-border-color: #{$ml-border-color};
37
+ --ms-primary-bg: #{$ml-primary-bg};
38
+ --ms-primary-bg-hover: #{$ml-primary-bg-hover};
39
+ --ms-border-color: #{$ml-border-color};
40
+
41
+ // ==========================================================================
42
+ // SEMANTIC VARIABLES - Component-Specific Theming
43
+ // ==========================================================================
44
+ // These provide an intermediate layer between base colors and components,
45
+ // allowing independent customization of each component without affecting others.
46
+ // Users can override these to customize specific components while keeping
47
+ // the base theme intact.
48
+ //
49
+ // Pattern: --ms-{component}-{property}-{state}
50
+ // Example: --ms-input-background, --ms-option-text-color-hover
51
+ // ==========================================================================
52
+
53
+ // Input Component Semantic Variables
54
+ // --------------------------------------------------------------------------
55
+ --ms-input-background: var(--ms-input-bg);
56
+ --ms-input-color: var(--ms-text-primary);
57
+ --ms-input-border-color: var(--ms-border-color);
58
+ --ms-input-border-color-focus: var(--ms-accent-color);
59
+ --ms-input-placeholder-color: var(--ms-text-secondary);
60
+ --ms-input-background-disabled: var(--ms-input-bg-disabled);
61
+
62
+ // Toggle Icon Semantic Variables
63
+ // --------------------------------------------------------------------------
64
+ --ms-toggle-icon-color: var(--ms-text-secondary);
65
+ --ms-toggle-icon-color-open: var(--ms-text-secondary);
66
+
67
+ // Counter Badge (in Input) Semantic Variables
68
+ // --------------------------------------------------------------------------
69
+ --ms-counter-badge-background: var(--ms-accent-color);
70
+ --ms-counter-badge-background-hover: var(--ms-accent-color-hover);
71
+ --ms-counter-badge-color: var(--ms-text-white);
72
+
73
+ // Floating Hint Semantic Variables
74
+ // --------------------------------------------------------------------------
75
+ --ms-hint-background: var(--ms-hint-bg);
76
+ --ms-hint-color: var(--ms-text-secondary);
77
+ --ms-hint-border-color: var(--ms-border-color);
78
+
79
+ // Dropdown Semantic Variables
80
+ // --------------------------------------------------------------------------
81
+ --ms-dropdown-background: var(--ms-dropdown-bg);
82
+ --ms-dropdown-text-color: var(--ms-text-primary);
83
+ --ms-dropdown-border-color: var(--ms-border-color);
84
+
85
+ // Dropdown Actions Semantic Variables
86
+ // --------------------------------------------------------------------------
87
+ --ms-actions-background: var(--ms-dropdown-bg);
88
+ --ms-actions-border-color: var(--ms-border-color);
89
+
90
+ // Action Button Semantic Variables
91
+ // --------------------------------------------------------------------------
92
+ --ms-action-button-background: transparent;
93
+ --ms-action-button-background-hover: var(--ms-primary-bg);
94
+ --ms-action-button-border-color: var(--ms-border-color);
95
+ --ms-action-button-border-color-hover: var(--ms-accent-color);
96
+ --ms-action-button-color: var(--ms-text-primary);
97
+
98
+ // Group Semantic Variables
99
+ // --------------------------------------------------------------------------
100
+ --ms-group-border-color: var(--ms-border-color);
101
+ --ms-group-label-color: var(--ms-text-secondary);
102
+
103
+ // Option Semantic Variables
104
+ // --------------------------------------------------------------------------
105
+ --ms-option-text-color: var(--ms-text-primary);
106
+ --ms-option-background: transparent;
107
+ --ms-option-background-hover: var(--ms-primary-bg);
108
+ --ms-option-background-focused: var(--ms-primary-bg);
109
+ --ms-option-outline-color-focused: var(--ms-accent-color);
110
+ --ms-option-background-selected: var(--ms-option-bg-selected);
111
+ --ms-option-background-matched: var(--ms-option-bg-matched);
112
+ --ms-option-border-matched-color: var(--ms-option-border-matched);
113
+
114
+ // Option Content Semantic Variables
115
+ // --------------------------------------------------------------------------
116
+ --ms-option-title-color: var(--ms-text-primary);
117
+ --ms-option-subtitle-color: var(--ms-text-secondary);
118
+ --ms-option-mark-background: var(--ms-option-mark-bg);
119
+ --ms-option-mark-color: inherit;
120
+
121
+ // Empty/Loading State Semantic Variables
122
+ // --------------------------------------------------------------------------
123
+ --ms-empty-color: var(--ms-text-secondary);
124
+ --ms-loading-color: var(--ms-text-secondary);
125
+
126
+ // Badge Semantic Variables
127
+ // --------------------------------------------------------------------------
128
+ --ms-badge-background: var(--ms-badge-bg);
129
+ --ms-badge-background-hover: var(--ms-badge-bg-hover);
130
+ --ms-badge-background-active: var(--ms-badge-bg-active);
131
+
132
+ // Badge Text Semantic Variables
133
+ // --------------------------------------------------------------------------
134
+ --ms-badge-text-background: var(--ms-badge-text-bg);
135
+ --ms-badge-text-color: var(--ms-accent-color);
136
+
137
+ // Badge Remove Button Semantic Variables
138
+ // --------------------------------------------------------------------------
139
+ --ms-badge-remove-background: var(--ms-accent-color);
140
+ --ms-badge-remove-background-hover: var(--ms-accent-color-hover);
141
+ --ms-badge-remove-color: var(--ms-text-white);
142
+
143
+ // Badge Counter Variant Semantic Variables
144
+ // --------------------------------------------------------------------------
145
+ --ms-badge-counter-border-color: var(--ms-border-color);
146
+ --ms-badge-counter-text-background: var(--ms-badge-counter-text-bg);
147
+ --ms-badge-counter-text-color: var(--ms-text-secondary);
148
+ --ms-badge-counter-remove-background: var(--ms-badge-counter-remove-bg);
149
+ --ms-badge-counter-remove-background-hover: var(--ms-badge-counter-remove-bg-hover);
150
+ --ms-badge-counter-remove-color: var(--ms-badge-counter-remove-color);
151
+
152
+ // Count Display Semantic Variables
153
+ // --------------------------------------------------------------------------
154
+ --ms-counter-wrapper-background: transparent;
155
+ --ms-counter-wrapper-background-hover: var(--ms-primary-bg);
156
+ --ms-counter-wrapper-border-color: var(--ms-border-color);
157
+ --ms-counter-wrapper-border-color-hover: var(--ms-accent-color);
158
+ --ms-count-text-color: var(--ms-text-primary);
159
+ --ms-count-clear-background: transparent;
160
+ --ms-count-clear-background-hover: var(--ms-accent-color);
161
+ --ms-count-clear-color: var(--ms-text-secondary);
162
+ --ms-count-clear-color-hover: var(--ms-accent-color);
163
+
164
+ // Tooltip Semantic Variables
165
+ // --------------------------------------------------------------------------
166
+ --ms-tooltip-background: var(--ms-tooltip-bg);
167
+ --ms-tooltip-text-color: var(--ms-tooltip-color);
168
+
169
+ // Selected Popover Semantic Variables
170
+ // --------------------------------------------------------------------------
171
+ --ms-selected-popover-background: var(--ms-dropdown-bg);
172
+ --ms-selected-popover-border-color: var(--ms-border-color);
173
+ --ms-selected-popover-header-background: var(--ms-selected-popover-header-bg);
174
+ --ms-selected-popover-header-color: var(--ms-text-primary);
175
+ --ms-selected-popover-header-border-color: var(--ms-border-color);
176
+ --ms-selected-popover-close-background: transparent;
177
+ --ms-selected-popover-close-background-hover: var(--ms-accent-color);
178
+ --ms-selected-popover-close-color: var(--ms-text-secondary);
179
+ --ms-selected-popover-close-color-hover: var(--ms-accent-color);
40
180
 
41
181
  // ==========================================================================
42
182
  // INPUT COMPONENT
43
183
  // ==========================================================================
44
184
 
45
- --ml-input-padding: #{$ml-input-padding};
46
- --ml-input-padding-right: #{$ml-input-padding-right};
47
- --ml-input-font-size: #{$ml-input-font-size};
48
- --ml-input-border-style: #{$ml-input-border-style};
49
- --ml-input-border-radius: #{$ml-input-border-radius};
50
- --ml-input-bg: #{$ml-input-bg};
51
- --ml-input-text: #{$ml-input-text};
52
- --ml-input-focus-border-color: #{$ml-input-focus-border-color};
53
- --ml-input-placeholder-color: #{$ml-input-placeholder-color};
54
- --ml-input-bg-disabled: #{$ml-input-bg-disabled};
185
+ --ms-input-padding: #{$ml-input-padding};
186
+ --ms-input-padding-right: #{$ml-input-padding-right};
187
+ --ms-input-font-size: #{$ml-input-font-size};
188
+ --ms-input-border-style: #{$ml-input-border-style};
189
+ --ms-input-border-radius: #{$ml-input-border-radius};
190
+ --ms-input-bg: #{$ml-input-bg};
191
+ --ms-input-text: #{$ml-input-text};
192
+ --ms-input-focus-border-color: #{$ml-input-focus-border-color};
193
+ --ms-input-placeholder-color: #{$ml-input-placeholder-color};
194
+ --ms-input-bg-disabled: #{$ml-input-bg-disabled};
55
195
 
56
196
  // ==========================================================================
57
197
  // TOGGLE ICON
58
198
  // ==========================================================================
59
199
 
60
- --ml-toggle-right: #{$ml-toggle-right};
61
- --ml-toggle-color: #{$ml-toggle-color};
62
- --ml-transform-center-y: #{$ml-transform-center-y};
63
- --ml-transform-rotate-180: #{$ml-transform-rotate-180};
200
+ --ms-toggle-right: #{$ml-toggle-right};
201
+ --ms-toggle-color: #{$ml-toggle-color};
202
+ --ms-transform-center-y: #{$ml-transform-center-y};
203
+ --ms-transform-rotate-180: #{$ml-transform-rotate-180};
64
204
 
65
205
  // ==========================================================================
66
206
  // COUNT BADGE (in input)
67
207
  // ==========================================================================
68
208
 
69
- --ml-count-badge-offset: #{$ml-count-badge-offset};
70
- --ml-count-badge-padding: #{$ml-count-badge-padding};
71
- --ml-count-badge-bg: #{$ml-count-badge-bg};
72
- --ml-count-badge-color: #{$ml-count-badge-color};
73
- --ml-count-badge-font-size: #{$ml-count-badge-font-size};
74
- --ml-count-badge-font-weight: #{$ml-count-badge-font-weight};
75
- --ml-count-badge-border-radius: #{$ml-count-badge-border-radius};
76
- --ml-count-badge-bg-hover: #{$ml-count-badge-bg-hover};
77
- --ml-transform-scale-hover: #{$ml-transform-scale-hover};
209
+ --ms-counter-offset: #{$ml-counter-offset};
210
+ --ms-counter-padding: #{$ml-counter-padding};
211
+ --ms-counter-bg: #{$ml-counter-bg};
212
+ --ms-counter-color: #{$ml-counter-color};
213
+ --ms-counter-font-size: #{$ml-counter-font-size};
214
+ --ms-counter-font-weight: #{$ml-counter-font-weight};
215
+ --ms-counter-border-radius: #{$ml-counter-border-radius};
216
+ --ms-counter-bg-hover: #{$ml-counter-bg-hover};
217
+ --ms-transform-scale-hover: #{$ml-transform-scale-hover};
78
218
 
79
219
  // ==========================================================================
80
220
  // FLOATING HINT
81
221
  // ==========================================================================
82
222
 
83
- --ml-hint-padding: #{$ml-hint-padding};
84
- --ml-hint-bg: #{$ml-hint-bg};
85
- --ml-hint-border: #{$ml-hint-border};
86
- --ml-hint-border-radius: #{$ml-hint-border-radius};
87
- --ml-hint-box-shadow: #{$ml-hint-box-shadow};
88
- --ml-hint-font-size: #{$ml-hint-font-size};
89
- --ml-hint-color: #{$ml-hint-color};
90
- --ml-line-height-relaxed: #{$ml-line-height-relaxed};
223
+ --ms-hint-padding: #{$ml-hint-padding};
224
+ --ms-hint-bg: #{$ml-hint-bg};
225
+ --ms-hint-border: #{$ml-hint-border};
226
+ --ms-hint-border-radius: #{$ml-hint-border-radius};
227
+ --ms-hint-box-shadow: #{$ml-hint-box-shadow};
228
+ --ms-hint-font-size: #{$ml-hint-font-size};
229
+ --ms-hint-color: #{$ml-hint-color};
230
+ --ms-line-height-relaxed: #{$ml-line-height-relaxed};
91
231
 
92
232
  // ==========================================================================
93
233
  // DROPDOWN
94
234
  // ==========================================================================
95
235
 
96
- --ml-dropdown-bg: #{$ml-dropdown-bg};
97
- --ml-dropdown-border: #{$ml-dropdown-border};
98
- --ml-dropdown-border-radius: #{$ml-dropdown-border-radius};
99
- --ml-dropdown-box-shadow: #{$ml-dropdown-box-shadow};
100
- --ml-dropdown-max-height: #{$ml-dropdown-max-height};
101
- --ml-dropdown-color: #{$ml-dropdown-color};
102
- --ml-z-index-dropdown: #{$ml-z-index-dropdown};
103
- --ml-z-index-sticky: #{$ml-z-index-sticky};
236
+ --ms-dropdown-bg: #{$ml-dropdown-bg};
237
+ --ms-dropdown-border: #{$ml-dropdown-border};
238
+ --ms-dropdown-border-radius: #{$ml-dropdown-border-radius};
239
+ --ms-dropdown-box-shadow: #{$ml-dropdown-box-shadow};
240
+ --ms-options-max-height: #{$ml-options-max-height};
241
+ --ms-option-color: #{$ml-option-color};
242
+ --ms-z-index-dropdown: #{$ml-z-index-dropdown};
243
+ --ms-z-index-sticky: #{$ml-z-index-sticky};
104
244
 
105
245
  // ==========================================================================
106
246
  // DROPDOWN ACTIONS
107
247
  // ==========================================================================
108
248
 
109
- --ml-actions-gap: #{$ml-actions-gap};
110
- --ml-actions-padding: #{$ml-actions-padding};
111
- --ml-actions-border-bottom: #{$ml-actions-border-bottom};
112
- --ml-actions-bg: #{$ml-actions-bg};
249
+ --ms-actions-gap: #{$ml-actions-gap};
250
+ --ms-actions-padding: #{$ml-actions-padding};
251
+ --ms-actions-border-bottom: #{$ml-actions-border-bottom};
252
+ --ms-actions-bg: #{$ml-actions-bg};
113
253
 
114
254
  // Action Button
115
- --ml-action-btn-padding: #{$ml-action-btn-padding};
116
- --ml-action-btn-font-size: #{$ml-action-btn-font-size};
117
- --ml-action-btn-border: #{$ml-action-btn-border};
118
- --ml-action-btn-border-radius: #{$ml-action-btn-border-radius};
119
- --ml-action-btn-bg: #{$ml-action-btn-bg};
120
- --ml-action-btn-color: #{$ml-action-btn-color};
121
- --ml-action-btn-bg-hover: #{$ml-action-btn-bg-hover};
122
- --ml-action-btn-border-color-hover: #{$ml-action-btn-border-color-hover};
123
- --ml-transform-scale-active: #{$ml-transform-scale-active};
255
+ --ms-action-btn-padding: #{$ml-action-btn-padding};
256
+ --ms-action-btn-font-size: #{$ml-action-btn-font-size};
257
+ --ms-action-btn-border: #{$ml-action-btn-border};
258
+ --ms-action-btn-border-radius: #{$ml-action-btn-border-radius};
259
+ --ms-action-btn-bg: #{$ml-action-btn-bg};
260
+ --ms-action-btn-color: #{$ml-action-btn-color};
261
+ --ms-action-btn-bg-hover: #{$ml-action-btn-bg-hover};
262
+ --ms-action-btn-border-color-hover: #{$ml-action-btn-border-color-hover};
263
+ --ms-transform-scale-active: #{$ml-transform-scale-active};
124
264
 
125
265
  // ==========================================================================
126
266
  // OPTIONS CONTAINER & GROUPS
127
267
  // ==========================================================================
128
268
 
129
- --ml-options-padding: #{$ml-options-padding};
269
+ --ms-options-padding: #{$ml-options-padding};
130
270
 
131
271
  // Group
132
- --ml-group-border-top: #{$ml-group-border-top};
133
- --ml-group-margin-top: #{$ml-group-margin-top};
134
- --ml-group-padding-top: #{$ml-group-padding-top};
272
+ --ms-group-border-top: #{$ml-group-border-top};
273
+ --ms-group-margin-top: #{$ml-group-margin-top};
274
+ --ms-group-padding-top: #{$ml-group-padding-top};
135
275
 
136
276
  // Group Label
137
- --ml-group-label-padding: #{$ml-group-label-padding};
138
- --ml-group-label-font-size: #{$ml-group-label-font-size};
139
- --ml-group-label-font-weight: #{$ml-group-label-font-weight};
140
- --ml-group-label-color: #{$ml-group-label-color};
141
- --ml-group-label-transform: #{$ml-group-label-transform};
142
- --ml-group-label-letter-spacing: #{$ml-group-label-letter-spacing};
277
+ --ms-group-label-padding: #{$ml-group-label-padding};
278
+ --ms-group-label-font-size: #{$ml-group-label-font-size};
279
+ --ms-group-label-font-weight: #{$ml-group-label-font-weight};
280
+ --ms-group-label-color: #{$ml-group-label-color};
281
+ --ms-group-label-transform: #{$ml-group-label-transform};
282
+ --ms-group-label-letter-spacing: #{$ml-group-label-letter-spacing};
143
283
 
144
284
  // ==========================================================================
145
285
  // INDIVIDUAL OPTIONS
146
286
  // ==========================================================================
147
287
 
148
- --ml-option-gap: #{$ml-option-gap};
149
- --ml-option-padding: #{$ml-option-padding};
150
- --ml-option-padding-h: #{$ml-option-padding-h};
151
- --ml-option-bg: #{$ml-option-bg};
152
- --ml-option-bg-hover: #{$ml-option-bg-hover};
153
- --ml-option-bg-focused: #{$ml-option-bg-focused};
154
- --ml-option-outline-focused: #{$ml-option-outline-focused};
155
- --ml-option-focus-outline-offset: #{$ml-option-focus-outline-offset};
156
- --ml-option-bg-matched: #{$ml-option-bg-matched};
157
- --ml-option-border-matched: #{$ml-option-border-matched};
158
- --ml-option-bg-selected: #{$ml-option-bg-selected};
159
- --ml-disabled-opacity: #{$ml-disabled-opacity};
288
+ --ms-option-gap: #{$ml-option-gap};
289
+ --ms-option-padding: #{$ml-option-padding};
290
+ --ms-option-padding-h: #{$ml-option-padding-h};
291
+ --ms-option-bg: #{$ml-option-bg};
292
+ --ms-option-bg-hover: #{$ml-option-bg-hover};
293
+ --ms-option-bg-focused: #{$ml-option-bg-focused};
294
+ --ms-option-outline-focused: #{$ml-option-outline-focused};
295
+ --ms-option-focus-outline-offset: #{$ml-option-focus-outline-offset};
296
+ --ms-option-bg-matched: #{$ml-option-bg-matched};
297
+ --ms-option-border-matched: #{$ml-option-border-matched};
298
+ --ms-option-bg-selected: #{$ml-option-bg-selected};
299
+ --ms-disabled-opacity: #{$ml-disabled-opacity};
160
300
 
161
301
  // ==========================================================================
162
302
  // OPTION CONTENT
163
303
  // ==========================================================================
164
304
 
165
- --ml-option-content-gap: #{$ml-option-content-gap};
305
+ --ms-option-content-gap: #{$ml-option-content-gap};
166
306
 
167
307
  // Option Icon
168
- --ml-option-icon-size: #{$ml-option-icon-size};
169
- --ml-option-icon-font-size: #{$ml-option-icon-font-size};
308
+ --ms-option-icon-size: #{$ml-option-icon-size};
309
+ --ms-option-icon-font-size: #{$ml-option-icon-font-size};
170
310
 
171
311
  // Option Title
172
- --ml-option-title-font-size: #{$ml-option-title-font-size};
173
- --ml-option-title-color: #{$ml-option-title-color};
174
- --ml-option-mark-bg: #{$ml-option-mark-bg};
175
- --ml-option-mark-color: #{$ml-option-mark-color};
176
- --ml-option-mark-font-weight: #{$ml-option-mark-font-weight};
312
+ --ms-option-title-font-size: #{$ml-option-title-font-size};
313
+ --ms-option-title-color: #{$ml-option-title-color};
314
+ --ms-option-mark-bg: #{$ml-option-mark-bg};
315
+ --ms-option-mark-color: #{$ml-option-mark-color};
316
+ --ms-option-mark-font-weight: #{$ml-option-mark-font-weight};
177
317
 
178
318
  // Option Subtitle
179
- --ml-option-subtitle-margin-top: #{$ml-option-subtitle-margin-top};
180
- --ml-option-subtitle-font-size: #{$ml-option-subtitle-font-size};
181
- --ml-option-subtitle-color: #{$ml-option-subtitle-color};
182
- --ml-option-subtitle-line-height: #{$ml-option-subtitle-line-height};
319
+ --ms-option-subtitle-margin-top: #{$ml-option-subtitle-margin-top};
320
+ --ms-option-subtitle-font-size: #{$ml-option-subtitle-font-size};
321
+ --ms-option-subtitle-color: #{$ml-option-subtitle-color};
322
+ --ms-option-subtitle-line-height: #{$ml-option-subtitle-line-height};
183
323
 
184
324
  // Checkbox
185
- --ml-checkbox-margin-top: #{$ml-checkbox-margin-top};
325
+ --ms-checkbox-margin-top: #{$ml-checkbox-margin-top};
326
+ --ms-checkbox-margin-right: #{$ml-checkbox-margin-right};
327
+ --ms-checkbox-margin-bottom: #{$ml-checkbox-margin-bottom};
328
+ --ms-checkbox-margin-left: #{$ml-checkbox-margin-left};
329
+ --ms-checkbox-size: #{$ml-checkbox-size};
330
+ --ms-checkbox-scale: #{$ml-checkbox-scale};
331
+ --ms-checkbox-align: flex-start; // flex-start (top), center, flex-end (bottom)
186
332
 
187
333
  // ==========================================================================
188
334
  // EMPTY & LOADING STATES
189
335
  // ==========================================================================
190
336
 
191
337
  // Empty State
192
- --ml-empty-padding: #{$ml-empty-padding};
193
- --ml-empty-font-size: #{$ml-empty-font-size};
194
- --ml-empty-color: #{$ml-empty-color};
338
+ --ms-empty-padding: #{$ml-empty-padding};
339
+ --ms-empty-font-size: #{$ml-empty-font-size};
340
+ --ms-empty-color: #{$ml-empty-color};
195
341
 
196
342
  // Loader
197
- --ml-loader-padding: #{$ml-loader-padding};
198
- --ml-loader-gap: #{$ml-loader-gap};
343
+ --ms-loader-padding: #{$ml-loader-padding};
344
+ --ms-loader-gap: #{$ml-loader-gap};
199
345
 
200
346
  // Loading Text
201
- --ml-loading-text-font-size: #{$ml-loading-text-font-size};
202
- --ml-loading-text-color: #{$ml-loading-text-color};
347
+ --ms-loading-text-font-size: #{$ml-loading-text-font-size};
348
+ --ms-loading-text-color: #{$ml-loading-text-color};
203
349
 
204
350
  // ==========================================================================
205
- // PILLS DISPLAY
351
+ // BADGES DISPLAY
206
352
  // ==========================================================================
207
353
 
208
- --ml-pills-gap: #{$ml-pills-gap};
209
- --ml-pills-margin-bottom: #{$ml-pills-margin-bottom};
210
- --ml-pills-margin-top: #{$ml-pills-margin-top};
211
- --ml-pills-margin-left: #{$ml-pills-margin-left};
212
- --ml-pills-margin-right: #{$ml-pills-margin-right};
354
+ --ms-badges-gap: #{$ml-badges-gap};
355
+ --ms-badges-margin-bottom: #{$ml-badges-margin-bottom};
356
+ --ms-badges-margin-top: #{$ml-badges-margin-top};
357
+ --ms-badges-margin-left: #{$ml-badges-margin-left};
358
+ --ms-badges-margin-right: #{$ml-badges-margin-right};
213
359
 
214
- // Individual Pill
215
- --ml-pill-gap: #{$ml-pill-gap};
216
- --ml-pill-height: #{$ml-pill-height};
217
- --ml-pill-font-size: #{$ml-pill-font-size};
218
- --ml-pill-font-weight: #{$ml-pill-font-weight};
219
- --ml-pill-border-radius: #{$ml-pill-border-radius};
220
- --ml-pill-bg: #{$ml-pill-bg};
221
- --ml-pill-bg-hover: #{$ml-pill-bg-hover};
222
- --ml-pill-bg-active: #{$ml-pill-bg-active};
223
- --ml-order-first: #{$ml-order-first};
360
+ // Individual Badge
361
+ --ms-badge-gap: #{$ml-badge-gap};
362
+ --ms-badge-height: #{$ml-badge-height};
363
+ --ms-badge-font-size: #{$ml-badge-font-size};
364
+ --ms-badge-font-weight: #{$ml-badge-font-weight};
365
+ --ms-badge-border-radius: #{$ml-badge-border-radius};
366
+ --ms-badge-bg: #{$ml-badge-bg};
367
+ --ms-badge-bg-hover: #{$ml-badge-bg-hover};
368
+ --ms-badge-bg-active: #{$ml-badge-bg-active};
369
+ --ms-order-first: #{$ml-order-first};
224
370
 
225
371
  // ==========================================================================
226
- // PILL TEXT & REMOVE BUTTON
372
+ // BADGE TEXT & REMOVE BUTTON
227
373
  // ==========================================================================
228
374
 
229
- // Pill Text
230
- --ml-pill-text-padding: #{$ml-pill-text-padding};
231
- --ml-pill-text-bg: #{$ml-pill-text-bg};
232
- --ml-pill-text-color: #{$ml-pill-text-color};
375
+ // Badge Text
376
+ --ms-badge-text-padding: #{$ml-badge-text-padding};
377
+ --ms-badge-text-bg: #{$ml-badge-text-bg};
378
+ --ms-badge-text-color: #{$ml-badge-text-color};
233
379
 
234
- // Pill Remove Button
235
- --ml-pill-remove-width: #{$ml-pill-remove-width};
236
- --ml-pill-remove-bg: #{$ml-pill-remove-bg};
237
- --ml-pill-remove-color: #{$ml-pill-remove-color};
238
- --ml-pill-remove-border: #{$ml-pill-remove-border};
239
- --ml-pill-remove-font-size: #{$ml-pill-remove-font-size};
240
- --ml-pill-remove-bg-hover: #{$ml-pill-remove-bg-hover};
241
- --ml-pill-remove-box-shadow-focus: #{$ml-pill-remove-box-shadow-focus};
242
- --ml-icon-remove: "#{$ml-icon-remove}";
380
+ // Badge Remove Button
381
+ --ms-badge-remove-width: #{$ml-badge-remove-width};
382
+ --ms-badge-remove-bg: #{$ml-badge-remove-bg};
383
+ --ms-badge-remove-color: #{$ml-badge-remove-color};
384
+ --ms-badge-remove-border: #{$ml-badge-remove-border};
385
+ --ms-badge-remove-font-size: #{$ml-badge-remove-font-size};
386
+ --ms-badge-remove-bg-hover: #{$ml-badge-remove-bg-hover};
387
+ --ms-badge-remove-box-shadow-focus: #{$ml-badge-remove-box-shadow-focus};
388
+ --ms-icon-remove: "#{$ml-icon-remove}";
243
389
 
244
- // Pill Indicator (for "+ X more", "3 selected", compact mode)
245
- --ml-pill-indicator-bg: #{$ml-pill-indicator-bg};
246
- --ml-pill-indicator-border: #{$ml-pill-indicator-border};
247
- --ml-pill-indicator-border-radius: #{$ml-pill-indicator-border-radius};
248
- --ml-pill-indicator-text-color: #{$ml-pill-indicator-text-color};
249
- --ml-pill-indicator-text-bg: #{$ml-pill-indicator-text-bg};
250
- --ml-pill-indicator-remove-bg: #{$ml-pill-indicator-remove-bg};
251
- --ml-pill-indicator-remove-color: #{$ml-pill-indicator-remove-color};
252
- --ml-pill-indicator-remove-bg-hover: #{$ml-pill-indicator-remove-bg-hover};
390
+ // Badge Indicator (for "+ X more", "3 selected", compact mode)
391
+ --ms-badge-counter-bg: #{$ml-badge-counter-bg};
392
+ --ms-badge-counter-border: #{$ml-badge-counter-border};
393
+ --ms-badge-counter-border-radius: #{$ml-badge-counter-border-radius};
394
+ --ms-badge-counter-text-color: #{$ml-badge-counter-text-color};
395
+ --ms-badge-counter-text-bg: #{$ml-badge-counter-text-bg};
396
+ --ms-badge-counter-remove-bg: #{$ml-badge-counter-remove-bg};
397
+ --ms-badge-counter-remove-color: #{$ml-badge-counter-remove-color};
398
+ --ms-badge-counter-remove-bg-hover: #{$ml-badge-counter-remove-bg-hover};
253
399
 
254
400
  // ==========================================================================
255
401
  // "+X MORE" BADGE
256
402
  // ==========================================================================
257
403
 
258
- --ml-more-badge-bg: #{$ml-more-badge-bg};
259
- --ml-more-badge-hover-bg: #{$ml-more-badge-hover-bg};
260
- --ml-more-badge-active-bg: #{$ml-more-badge-active-bg};
404
+ --ms-more-badge-bg: #{$ml-more-badge-bg};
405
+ --ms-more-badge-hover-bg: #{$ml-more-badge-hover-bg};
406
+ --ms-more-badge-active-bg: #{$ml-more-badge-active-bg};
261
407
 
262
408
  // ==========================================================================
263
409
  // COUNT DISPLAY MODE
264
410
  // ==========================================================================
265
411
 
266
- --ml-count-display-margin-bottom: #{$ml-count-display-margin-bottom};
267
- --ml-count-display-margin-top: #{$ml-count-display-margin-top};
268
- --ml-count-display-margin-left: #{$ml-count-display-margin-left};
269
- --ml-count-display-margin-right: #{$ml-count-display-margin-right};
412
+ --ms-count-display-margin-bottom: #{$ml-count-display-margin-bottom};
413
+ --ms-count-display-margin-top: #{$ml-count-display-margin-top};
414
+ --ms-count-display-margin-left: #{$ml-count-display-margin-left};
415
+ --ms-count-display-margin-right: #{$ml-count-display-margin-right};
270
416
 
271
417
  // Count Badge Wrapper
272
- --ml-count-badge-wrapper-bg: #{$ml-count-badge-wrapper-bg};
273
- --ml-count-badge-wrapper-border: #{$ml-count-badge-wrapper-border};
274
- --ml-count-badge-wrapper-border-radius: #{$ml-count-badge-wrapper-border-radius};
275
- --ml-count-badge-wrapper-padding: #{$ml-count-badge-wrapper-padding};
276
- --ml-count-badge-wrapper-gap: #{$ml-count-badge-wrapper-gap};
277
- --ml-count-badge-wrapper-bg-hover: #{$ml-count-badge-wrapper-bg-hover};
278
- --ml-count-badge-wrapper-border-color-hover: #{$ml-count-badge-wrapper-border-color-hover};
418
+ --ms-counter-wrapper-bg: #{$ml-counter-wrapper-bg};
419
+ --ms-counter-wrapper-border: #{$ml-counter-wrapper-border};
420
+ --ms-counter-wrapper-border-radius: #{$ml-counter-wrapper-border-radius};
421
+ --ms-counter-wrapper-padding: #{$ml-counter-wrapper-padding};
422
+ --ms-counter-wrapper-gap: #{$ml-counter-wrapper-gap};
423
+ --ms-counter-wrapper-bg-hover: #{$ml-counter-wrapper-bg-hover};
424
+ --ms-counter-wrapper-border-color-hover: #{$ml-counter-wrapper-border-color-hover};
279
425
 
280
426
  // ==========================================================================
281
427
  // COUNT TEXT & CLEAR BUTTON
282
428
  // ==========================================================================
283
429
 
284
430
  // Count Text
285
- --ml-count-text-bg: #{$ml-count-text-bg};
286
- --ml-count-text-border: #{$ml-count-text-border};
287
- --ml-count-text-font-size: #{$ml-count-text-font-size};
288
- --ml-count-text-color: #{$ml-count-text-color};
431
+ --ms-count-text-bg: #{$ml-count-text-bg};
432
+ --ms-count-text-border: #{$ml-count-text-border};
433
+ --ms-count-text-font-size: #{$ml-count-text-font-size};
434
+ --ms-count-text-color: #{$ml-count-text-color};
289
435
 
290
436
  // Count Clear Button
291
- --ml-count-clear-size: #{$ml-count-clear-size};
292
- --ml-count-clear-bg: #{$ml-count-clear-bg};
293
- --ml-count-clear-color: #{$ml-count-clear-color};
294
- --ml-count-clear-font-size: #{$ml-count-clear-font-size};
295
- --ml-count-clear-border-radius: #{$ml-count-clear-border-radius};
296
- --ml-count-clear-bg-hover: #{$ml-count-clear-bg-hover};
297
- --ml-count-clear-color-hover: #{$ml-count-clear-color-hover};
298
- --ml-icon-clear: "#{$ml-icon-clear}";
437
+ --ms-count-clear-size: #{$ml-count-clear-size};
438
+ --ms-count-clear-bg: #{$ml-count-clear-bg};
439
+ --ms-count-clear-color: #{$ml-count-clear-color};
440
+ --ms-count-clear-font-size: #{$ml-count-clear-font-size};
441
+ --ms-count-clear-border-radius: #{$ml-count-clear-border-radius};
442
+ --ms-count-clear-bg-hover: #{$ml-count-clear-bg-hover};
443
+ --ms-count-clear-color-hover: #{$ml-count-clear-color-hover};
444
+ --ms-icon-clear: "#{$ml-icon-clear}";
299
445
 
300
446
  // ==========================================================================
301
447
  // TOOLTIPS
302
448
  // ==========================================================================
303
449
 
304
- --ml-tooltip-bg: #{$ml-tooltip-bg};
305
- --ml-tooltip-color: #{$ml-tooltip-color};
306
- --ml-tooltip-padding: #{$ml-tooltip-padding};
307
- --ml-tooltip-border-radius: #{$ml-tooltip-border-radius};
308
- --ml-tooltip-font-size: #{$ml-tooltip-font-size};
309
- --ml-tooltip-max-width: #{$ml-tooltip-max-width};
310
- --ml-tooltip-shadow: #{$ml-tooltip-shadow};
311
- --ml-tooltip-z-index: #{$ml-tooltip-z-index};
450
+ --ms-tooltip-bg: #{$ml-tooltip-bg};
451
+ --ms-tooltip-color: #{$ml-tooltip-color};
452
+ --ms-tooltip-padding: #{$ml-tooltip-padding};
453
+ --ms-tooltip-border-radius: #{$ml-tooltip-border-radius};
454
+ --ms-tooltip-font-size: #{$ml-tooltip-font-size};
455
+ --ms-tooltip-max-width: #{$ml-tooltip-max-width};
456
+ --ms-tooltip-shadow: #{$ml-tooltip-shadow};
457
+ --ms-tooltip-z-index: #{$ml-tooltip-z-index};
312
458
 
313
459
  // ==========================================================================
314
460
  // SELECTED POPOVER
315
461
  // ==========================================================================
316
462
 
317
- --ml-z-index-popover: #{$ml-z-index-popover};
318
- --ml-selected-popover-width: #{$ml-selected-popover-width};
319
- --ml-selected-popover-max-height: #{$ml-selected-popover-max-height};
320
- --ml-selected-popover-bg: #{$ml-selected-popover-bg};
321
- --ml-selected-popover-border: #{$ml-selected-popover-border};
322
- --ml-selected-popover-border-radius: #{$ml-selected-popover-border-radius};
323
- --ml-selected-popover-box-shadow: #{$ml-selected-popover-box-shadow};
463
+ --ms-z-index-popover: #{$ml-z-index-popover};
464
+ --ms-selected-popover-width: #{$ml-selected-popover-width};
465
+ --ms-selected-popover-max-height: #{$ml-selected-popover-max-height};
466
+ --ms-selected-popover-bg: #{$ml-selected-popover-bg};
467
+ --ms-selected-popover-border: #{$ml-selected-popover-border};
468
+ --ms-selected-popover-border-radius: #{$ml-selected-popover-border-radius};
469
+ --ms-selected-popover-box-shadow: #{$ml-selected-popover-box-shadow};
324
470
 
325
471
  // Popover Header
326
- --ml-selected-popover-header-padding: #{$ml-selected-popover-header-padding};
327
- --ml-selected-popover-header-bg: #{$ml-selected-popover-header-bg};
328
- --ml-selected-popover-header-border-bottom: #{$ml-selected-popover-header-border-bottom};
329
- --ml-selected-popover-header-font-size: #{$ml-selected-popover-header-font-size};
330
- --ml-selected-popover-header-font-weight: #{$ml-selected-popover-header-font-weight};
331
- --ml-selected-popover-header-color: #{$ml-selected-popover-header-color};
472
+ --ms-selected-popover-header-padding: #{$ml-selected-popover-header-padding};
473
+ --ms-selected-popover-header-bg: #{$ml-selected-popover-header-bg};
474
+ --ms-selected-popover-header-border-bottom: #{$ml-selected-popover-header-border-bottom};
475
+ --ms-selected-popover-header-font-size: #{$ml-selected-popover-header-font-size};
476
+ --ms-selected-popover-header-font-weight: #{$ml-selected-popover-header-font-weight};
477
+ --ms-selected-popover-header-color: #{$ml-selected-popover-header-color};
332
478
 
333
479
  // ==========================================================================
334
480
  // POPOVER CLOSE BUTTON
335
481
  // ==========================================================================
336
482
 
337
- --ml-popover-close-size: #{$ml-popover-close-size};
338
- --ml-selected-popover-close-bg: #{$ml-selected-popover-close-bg};
339
- --ml-selected-popover-close-color: #{$ml-selected-popover-close-color};
340
- --ml-selected-popover-close-font-size: #{$ml-selected-popover-close-font-size};
341
- --ml-selected-popover-close-border-radius: #{$ml-selected-popover-close-border-radius};
342
- --ml-selected-popover-close-bg-hover: #{$ml-selected-popover-close-bg-hover};
343
- --ml-selected-popover-close-color-hover: #{$ml-selected-popover-close-color-hover};
483
+ --ms-popover-close-size: #{$ml-popover-close-size};
484
+ --ms-selected-popover-close-bg: #{$ml-selected-popover-close-bg};
485
+ --ms-selected-popover-close-color: #{$ml-selected-popover-close-color};
486
+ --ms-selected-popover-close-font-size: #{$ml-selected-popover-close-font-size};
487
+ --ms-selected-popover-close-border-radius: #{$ml-selected-popover-close-border-radius};
488
+ --ms-selected-popover-close-bg-hover: #{$ml-selected-popover-close-bg-hover};
489
+ --ms-selected-popover-close-color-hover: #{$ml-selected-popover-close-color-hover};
344
490
 
345
491
  // ==========================================================================
346
492
  // POPOVER BODY
347
493
  // ==========================================================================
348
494
 
349
- --ml-selected-popover-body-gap: #{$ml-selected-popover-body-gap};
350
- --ml-selected-popover-body-padding: #{$ml-selected-popover-body-padding};
351
- --ml-selected-popover-body-max-height: #{$ml-selected-popover-body-max-height};
495
+ --ms-selected-popover-body-gap: #{$ml-selected-popover-body-gap};
496
+ --ms-selected-popover-body-padding: #{$ml-selected-popover-body-padding};
497
+ --ms-selected-popover-body-max-height: #{$ml-selected-popover-body-max-height};
352
498
 
353
499
  // ==========================================================================
354
500
  // TYPOGRAPHY SCALE
355
501
  // ==========================================================================
356
502
 
357
- --ml-font-size-2xs: #{$ml-font-size-2xs};
358
- --ml-font-size-xs: #{$ml-font-size-xs};
359
- --ml-font-size-sm: #{$ml-font-size-sm};
360
- --ml-font-size-base: #{$ml-font-size-base};
361
- --ml-font-size-lg: #{$ml-font-size-lg};
362
- --ml-font-weight-medium: #{$ml-font-weight-medium};
363
- --ml-font-weight-semibold: #{$ml-font-weight-semibold};
364
- --ml-line-height-none: #{$ml-line-height-none};
503
+ --ms-font-size-2xs: #{$ml-font-size-2xs};
504
+ --ms-font-size-xs: #{$ml-font-size-xs};
505
+ --ms-font-size-sm: #{$ml-font-size-sm};
506
+ --ms-font-size-base: #{$ml-font-size-base};
507
+ --ms-font-size-lg: #{$ml-font-size-lg};
508
+ --ms-font-weight-medium: #{$ml-font-weight-medium};
509
+ --ms-font-weight-semibold: #{$ml-font-weight-semibold};
510
+ --ms-line-height-none: #{$ml-line-height-none};
365
511
 
366
512
  // ==========================================================================
367
513
  // SPACING & SIZING
368
514
  // ==========================================================================
369
515
 
370
- --ml-spacing-xs: #{$ml-spacing-xs};
371
- --ml-spacing-sm: #{$ml-spacing-sm};
372
- --ml-spacing-md: #{$ml-spacing-md};
373
- --ml-spacing-lg: #{$ml-spacing-lg};
516
+ --ms-spacing-xs: #{$ml-spacing-xs};
517
+ --ms-spacing-sm: #{$ml-spacing-sm};
518
+ --ms-spacing-md: #{$ml-spacing-md};
519
+ --ms-spacing-lg: #{$ml-spacing-lg};
374
520
 
375
521
  // ==========================================================================
376
522
  // TRANSITIONS & EFFECTS
377
523
  // ==========================================================================
378
524
 
379
- --ml-transition-fast: #{$ml-transition-fast};
380
- --ml-transition-normal: #{$ml-transition-normal};
381
- --ml-easing-snappy: #{$ml-easing-snappy};
525
+ --ms-transition-fast: #{$ml-transition-fast};
526
+ --ms-transition-normal: #{$ml-transition-normal};
527
+ --ms-easing-snappy: #{$ml-easing-snappy};
382
528
 
383
529
  // ==========================================================================
384
530
  // OPACITY VALUES
385
531
  // ==========================================================================
386
532
 
387
- --ml-placeholder-opacity: #{$ml-placeholder-opacity};
388
- --ml-disabled-input-opacity: #{$ml-disabled-input-opacity};
533
+ --ms-placeholder-opacity: #{$ml-placeholder-opacity};
534
+ --ms-disabled-input-opacity: #{$ml-disabled-input-opacity};
389
535
  }