@ng-matero/ng-select 0.2.0 → 0.4.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/fesm2022/ng-matero-ng-select.mjs +116 -171
- package/fesm2022/ng-matero-ng-select.mjs.map +1 -1
- package/index.d.ts +52 -71
- package/package.json +1 -1
- package/scss/ant.design.theme.scss +1 -1
- package/scss/default.theme.scss +1 -1
- package/scss/material.theme.scss +1 -1
- package/themes/ant.design.theme.css +1 -1
- package/themes/ant.design.theme.css.map +1 -1
- package/themes/default.theme.css +1 -1
- package/themes/default.theme.css.map +1 -1
- package/themes/material.theme.css +1 -1
- package/themes/material.theme.css.map +1 -1
package/index.d.ts
CHANGED
|
@@ -13,9 +13,9 @@ interface NgOptionItem {
|
|
|
13
13
|
label?: string;
|
|
14
14
|
value?: string | any;
|
|
15
15
|
parent?: NgOptionItem | null;
|
|
16
|
-
children?: NgOptionItem[];
|
|
16
|
+
children?: NgOptionItem[] | null;
|
|
17
17
|
}
|
|
18
|
-
type
|
|
18
|
+
type DropdownPanelPosition = 'top' | 'right' | 'bottom' | 'left' | 'auto';
|
|
19
19
|
type AddTagFn = (term: string) => any | Promise<any>;
|
|
20
20
|
type CompareWithFn = (a: any, b: any) => boolean;
|
|
21
21
|
type GroupValueFn = (key: string | any, children: any[]) => string | any;
|
|
@@ -31,23 +31,23 @@ interface ScrollEvent {
|
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
declare class NgDropdownPanel implements OnInit, OnChanges, OnDestroy {
|
|
34
|
+
listboxId: string;
|
|
34
35
|
items: NgOptionItem[];
|
|
35
36
|
markedItem?: NgOptionItem;
|
|
36
|
-
position:
|
|
37
|
+
position: DropdownPanelPosition;
|
|
37
38
|
appendTo?: string;
|
|
38
39
|
bufferAmount: number;
|
|
39
40
|
virtualScroll: boolean;
|
|
40
41
|
headerTemplate?: TemplateRef<any>;
|
|
41
42
|
footerTemplate?: TemplateRef<any>;
|
|
42
43
|
filterValue: string | null;
|
|
43
|
-
ariaLabelDropdown: string | null;
|
|
44
44
|
update: EventEmitter<NgOptionItem[]>;
|
|
45
45
|
scroll: EventEmitter<ScrollEvent>;
|
|
46
46
|
scrollToEnd: EventEmitter<void>;
|
|
47
47
|
outsideClick: EventEmitter<void>;
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
48
|
+
scrollHostElRef: ElementRef<HTMLElement>;
|
|
49
|
+
scrollContentElRef: ElementRef<HTMLElement>;
|
|
50
|
+
scrollSpacerElRef: ElementRef<HTMLElement>;
|
|
51
51
|
private _document;
|
|
52
52
|
private _renderer;
|
|
53
53
|
private _zone;
|
|
@@ -55,15 +55,15 @@ declare class NgDropdownPanel implements OnInit, OnChanges, OnDestroy {
|
|
|
55
55
|
private _panelUtils;
|
|
56
56
|
private readonly _destroy$;
|
|
57
57
|
private readonly _dropdown;
|
|
58
|
-
private _virtualPadding;
|
|
59
|
-
private _scrollablePanel;
|
|
60
|
-
private _contentPanel;
|
|
61
58
|
private _select;
|
|
62
59
|
private _parent;
|
|
60
|
+
private _scrollHost;
|
|
61
|
+
private _scrollContent;
|
|
62
|
+
private _scrollSpacer;
|
|
63
63
|
private _scrollToEndFired;
|
|
64
64
|
private _updateScrollHeight;
|
|
65
65
|
private _lastScrollPosition;
|
|
66
|
-
get currentPosition():
|
|
66
|
+
get currentPosition(): DropdownPanelPosition;
|
|
67
67
|
private _currentPosition;
|
|
68
68
|
private get itemsLength();
|
|
69
69
|
private set itemsLength(value);
|
|
@@ -96,7 +96,7 @@ declare class NgDropdownPanel implements OnInit, OnChanges, OnDestroy {
|
|
|
96
96
|
private _updateYPosition;
|
|
97
97
|
private _setupMousedownListener;
|
|
98
98
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgDropdownPanel, never>;
|
|
99
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgDropdownPanel, "ng-dropdown-panel", never, { "
|
|
99
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgDropdownPanel, "ng-dropdown-panel", never, { "listboxId": { "alias": "listboxId"; "required": false; }; "items": { "alias": "items"; "required": false; }; "markedItem": { "alias": "markedItem"; "required": false; }; "position": { "alias": "position"; "required": false; }; "appendTo": { "alias": "appendTo"; "required": false; }; "bufferAmount": { "alias": "bufferAmount"; "required": false; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; }; "headerTemplate": { "alias": "headerTemplate"; "required": false; }; "footerTemplate": { "alias": "footerTemplate"; "required": false; }; "filterValue": { "alias": "filterValue"; "required": false; }; }, { "update": "update"; "scroll": "scroll"; "scrollToEnd": "scrollToEnd"; "outsideClick": "outsideClick"; }, never, ["*"], true, never>;
|
|
100
100
|
static ngAcceptInputType_virtualScroll: unknown;
|
|
101
101
|
}
|
|
102
102
|
|
|
@@ -228,25 +228,26 @@ declare class NgSelect implements OnDestroy, OnChanges, OnInit, AfterViewInit, C
|
|
|
228
228
|
readonly autoFocus: string | null;
|
|
229
229
|
readonly classes: string | null;
|
|
230
230
|
_classList: Record<string, boolean>;
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
231
|
+
_uid: string;
|
|
232
|
+
bindLabel: string | undefined;
|
|
233
|
+
bindValue: string | undefined;
|
|
234
|
+
placeholder: string | undefined;
|
|
234
235
|
fixedPlaceholder: boolean;
|
|
235
|
-
appendTo
|
|
236
|
-
|
|
236
|
+
appendTo: string | undefined;
|
|
237
|
+
panelPosition: DropdownPanelPosition;
|
|
237
238
|
readonly: boolean;
|
|
238
239
|
multiple: boolean;
|
|
239
240
|
searchable: boolean;
|
|
240
241
|
clearable: boolean;
|
|
241
|
-
|
|
242
|
+
clearOnBackspace: boolean;
|
|
243
|
+
clearAllText: string;
|
|
242
244
|
loading: boolean;
|
|
243
|
-
loadingText
|
|
245
|
+
loadingText: string;
|
|
244
246
|
closeOnSelect: boolean;
|
|
245
|
-
clearOnBackspace: boolean;
|
|
246
247
|
hideSelected: boolean;
|
|
247
248
|
selectOnTab: boolean;
|
|
248
|
-
openOnEnter
|
|
249
|
-
virtualScroll
|
|
249
|
+
openOnEnter: boolean;
|
|
250
|
+
virtualScroll: boolean;
|
|
250
251
|
bufferAmount: number;
|
|
251
252
|
selectableGroup: boolean;
|
|
252
253
|
selectableGroupAsModel: boolean;
|
|
@@ -257,24 +258,26 @@ declare class NgSelect implements OnDestroy, OnChanges, OnInit, AfterViewInit, C
|
|
|
257
258
|
markFirst: boolean;
|
|
258
259
|
preventToggleOnRightClick: boolean;
|
|
259
260
|
addTag: boolean | AddTagFn;
|
|
260
|
-
addTagText
|
|
261
|
-
notFoundText
|
|
261
|
+
addTagText: string;
|
|
262
|
+
notFoundText: string;
|
|
262
263
|
typeahead?: Subject<string>;
|
|
263
|
-
typeToSearchText
|
|
264
|
+
typeToSearchText: string;
|
|
264
265
|
groupBy?: string | ((value: any) => any);
|
|
265
266
|
groupValue?: GroupValueFn;
|
|
266
267
|
searchFn: SearchFn | null;
|
|
267
268
|
keyDownFn: (_: KeyboardEvent) => boolean;
|
|
268
269
|
trackByFn: TrackByFn | null;
|
|
269
|
-
|
|
270
|
-
inputAttrs: Record<string, string>;
|
|
271
|
-
appearance?: string;
|
|
272
|
-
ariaLabelDropdown: string;
|
|
273
|
-
ariaLabel?: string;
|
|
270
|
+
appearance: string;
|
|
274
271
|
tabIndex?: number;
|
|
275
|
-
|
|
272
|
+
ariaLabel?: string | null;
|
|
273
|
+
ariaLabelledby?: string | null;
|
|
274
|
+
ariaDescribedby?: string | null;
|
|
275
|
+
inputAttrs: Record<string, string>;
|
|
276
276
|
isOpen?: boolean;
|
|
277
277
|
set panelClass(value: string | string[] | Record<string, any> | undefined);
|
|
278
|
+
get inputId(): string;
|
|
279
|
+
set inputId(value: string);
|
|
280
|
+
private _inputId;
|
|
278
281
|
get items(): readonly any[] | null | undefined;
|
|
279
282
|
set items(value: readonly any[] | null | undefined);
|
|
280
283
|
private _items;
|
|
@@ -283,11 +286,11 @@ declare class NgSelect implements OnDestroy, OnChanges, OnInit, AfterViewInit, C
|
|
|
283
286
|
get compareWith(): CompareWithFn;
|
|
284
287
|
set compareWith(fn: CompareWithFn);
|
|
285
288
|
private _compareWith;
|
|
286
|
-
get clearSearchOnAdd(): boolean
|
|
287
|
-
set clearSearchOnAdd(value: boolean
|
|
289
|
+
get clearSearchOnAdd(): boolean;
|
|
290
|
+
set clearSearchOnAdd(value: boolean);
|
|
288
291
|
private _clearSearchOnAdd?;
|
|
289
|
-
get deselectOnClick(): boolean
|
|
290
|
-
set deselectOnClick(value: boolean
|
|
292
|
+
get deselectOnClick(): boolean;
|
|
293
|
+
set deselectOnClick(value: boolean);
|
|
291
294
|
private _deselectOnClick?;
|
|
292
295
|
blurEvent: EventEmitter<FocusEvent>;
|
|
293
296
|
focusEvent: EventEmitter<FocusEvent>;
|
|
@@ -317,14 +320,12 @@ declare class NgSelect implements OnDestroy, OnChanges, OnInit, AfterViewInit, C
|
|
|
317
320
|
tagTemplate?: TemplateRef<any>;
|
|
318
321
|
loadingSpinnerTemplate?: TemplateRef<any>;
|
|
319
322
|
clearButtonTemplate?: TemplateRef<any>;
|
|
320
|
-
dropdownId: string;
|
|
321
|
-
element: HTMLElement;
|
|
322
323
|
itemsList: ItemsList;
|
|
324
|
+
element: HTMLElement;
|
|
323
325
|
viewPortItems: NgOptionItem[];
|
|
324
326
|
searchTerm: string | null;
|
|
325
327
|
focused?: boolean;
|
|
326
328
|
escapeHTML: boolean;
|
|
327
|
-
tabFocusOnClear: boolean;
|
|
328
329
|
private _itemsAreUsed?;
|
|
329
330
|
private _primitive;
|
|
330
331
|
private _manualOpen?;
|
|
@@ -336,12 +337,16 @@ declare class NgSelect implements OnDestroy, OnChanges, OnInit, AfterViewInit, C
|
|
|
336
337
|
get selectedItems(): NgOptionItem[];
|
|
337
338
|
get selectedValues(): any[];
|
|
338
339
|
get hasValue(): boolean;
|
|
339
|
-
get currentPanelPosition():
|
|
340
|
+
get currentPanelPosition(): DropdownPanelPosition | undefined;
|
|
340
341
|
get showAddTag(): boolean;
|
|
341
342
|
get filtered(): boolean;
|
|
342
343
|
private get _editableSearchTerm();
|
|
343
344
|
private get _isTypeahead();
|
|
344
345
|
private get _validTerm();
|
|
346
|
+
get showClearButton(): boolean | "" | null;
|
|
347
|
+
get showNoItemsFound(): boolean | "" | undefined;
|
|
348
|
+
get showTypeToSearch(): boolean | undefined;
|
|
349
|
+
get listboxId(): string;
|
|
345
350
|
private _onChange;
|
|
346
351
|
private _onTouched;
|
|
347
352
|
trackByOption: (_: number, item: NgOptionItem) => any;
|
|
@@ -354,7 +359,7 @@ declare class NgSelect implements OnDestroy, OnChanges, OnInit, AfterViewInit, C
|
|
|
354
359
|
registerOnChange(fn: any): void;
|
|
355
360
|
registerOnTouched(fn: any): void;
|
|
356
361
|
setDisabledState(isDisabled: boolean): void;
|
|
357
|
-
clearItem: (item
|
|
362
|
+
clearItem: (item?: NgOptionItem | null) => void;
|
|
358
363
|
handleKeyDown(e: KeyboardEvent): void;
|
|
359
364
|
handleKeyCode(e: KeyboardEvent): void;
|
|
360
365
|
handleKeyCodeInput(e: KeyboardEvent): void;
|
|
@@ -370,12 +375,8 @@ declare class NgSelect implements OnDestroy, OnChanges, OnInit, AfterViewInit, C
|
|
|
370
375
|
select(item: NgOptionItem): void;
|
|
371
376
|
focus(): void;
|
|
372
377
|
blur(): void;
|
|
373
|
-
unselect(item
|
|
378
|
+
unselect(item?: NgOptionItem | null): void;
|
|
374
379
|
selectTag(): void;
|
|
375
|
-
showClear(): boolean | "" | null;
|
|
376
|
-
focusOnClear(): void;
|
|
377
|
-
showNoItemsFound(): boolean | "" | undefined;
|
|
378
|
-
showTypeToSearch(): boolean | undefined;
|
|
379
380
|
onCompositionStart(): void;
|
|
380
381
|
onCompositionEnd(term: string): void;
|
|
381
382
|
filter(term: string): void;
|
|
@@ -390,7 +391,6 @@ declare class NgSelect implements OnDestroy, OnChanges, OnInit, AfterViewInit, C
|
|
|
390
391
|
private _handleWriteValue;
|
|
391
392
|
private _handleKeyPresses;
|
|
392
393
|
private _setInputAttributes;
|
|
393
|
-
private _setTabFocusOnClear;
|
|
394
394
|
private _updateNgModel;
|
|
395
395
|
private _clearSearch;
|
|
396
396
|
private _changeSearch;
|
|
@@ -404,32 +404,15 @@ declare class NgSelect implements OnDestroy, OnChanges, OnInit, AfterViewInit, C
|
|
|
404
404
|
private _handleArrowUp;
|
|
405
405
|
private _nextItemIsTag;
|
|
406
406
|
private _handleBackspace;
|
|
407
|
-
private _mergeGlobalConfig;
|
|
408
|
-
/**
|
|
409
|
-
* Gets virtual scroll value from input or from config
|
|
410
|
-
*
|
|
411
|
-
* @param config NgSelectConfig object
|
|
412
|
-
*
|
|
413
|
-
* @returns `true` if virtual scroll is enabled, `false` otherwise
|
|
414
|
-
*/
|
|
415
|
-
private getVirtualScroll;
|
|
416
|
-
/**
|
|
417
|
-
* Gets disableVirtualScroll value from input or from config
|
|
418
|
-
*
|
|
419
|
-
* @param config NgSelectConfig object
|
|
420
|
-
*
|
|
421
|
-
* @returns `true` if disableVirtualScroll is enabled, `false` otherwise
|
|
422
|
-
*/
|
|
423
|
-
private isVirtualScrollDisabled;
|
|
424
407
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgSelect, never>;
|
|
425
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgSelect, "ng-select", never, { "bindLabel": { "alias": "bindLabel"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "fixedPlaceholder": { "alias": "fixedPlaceholder"; "required": false; }; "appendTo": { "alias": "appendTo"; "required": false; }; "
|
|
408
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgSelect, "ng-select", never, { "bindLabel": { "alias": "bindLabel"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "fixedPlaceholder": { "alias": "fixedPlaceholder"; "required": false; }; "appendTo": { "alias": "appendTo"; "required": false; }; "panelPosition": { "alias": "panelPosition"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "clearOnBackspace": { "alias": "clearOnBackspace"; "required": false; }; "clearAllText": { "alias": "clearAllText"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; "closeOnSelect": { "alias": "closeOnSelect"; "required": false; }; "hideSelected": { "alias": "hideSelected"; "required": false; }; "selectOnTab": { "alias": "selectOnTab"; "required": false; }; "openOnEnter": { "alias": "openOnEnter"; "required": false; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; }; "bufferAmount": { "alias": "bufferAmount"; "required": false; }; "selectableGroup": { "alias": "selectableGroup"; "required": false; }; "selectableGroupAsModel": { "alias": "selectableGroupAsModel"; "required": false; }; "searchWhileComposing": { "alias": "searchWhileComposing"; "required": false; }; "editableSearchTerm": { "alias": "editableSearchTerm"; "required": false; }; "maxSelectedItems": { "alias": "maxSelectedItems"; "required": false; }; "minTermLength": { "alias": "minTermLength"; "required": false; }; "markFirst": { "alias": "markFirst"; "required": false; }; "preventToggleOnRightClick": { "alias": "preventToggleOnRightClick"; "required": false; }; "addTag": { "alias": "addTag"; "required": false; }; "addTagText": { "alias": "addTagText"; "required": false; }; "notFoundText": { "alias": "notFoundText"; "required": false; }; "typeahead": { "alias": "typeahead"; "required": false; }; "typeToSearchText": { "alias": "typeToSearchText"; "required": false; }; "groupBy": { "alias": "groupBy"; "required": false; }; "groupValue": { "alias": "groupValue"; "required": false; }; "searchFn": { "alias": "searchFn"; "required": false; }; "keyDownFn": { "alias": "keyDownFn"; "required": false; }; "trackByFn": { "alias": "trackByFn"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaLabelledby": { "alias": "ariaLabelledby"; "required": false; }; "ariaDescribedby": { "alias": "ariaDescribedby"; "required": false; }; "inputAttrs": { "alias": "inputAttrs"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "panelClass": { "alias": "panelClass"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "items": { "alias": "items"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "clearSearchOnAdd": { "alias": "clearSearchOnAdd"; "required": false; }; "deselectOnClick": { "alias": "deselectOnClick"; "required": false; }; }, { "blurEvent": "blur"; "focusEvent": "focus"; "changeEvent": "change"; "openEvent": "open"; "closeEvent": "close"; "searchEvent": "search"; "clearEvent": "clear"; "addEvent": "add"; "removeEvent": "remove"; "scroll": "scroll"; "scrollToEnd": "scrollToEnd"; }, ["optionTemplate", "optgroupTemplate", "labelTemplate", "multiLabelTemplate", "headerTemplate", "footerTemplate", "notFoundTemplate", "placeholderTemplate", "typeToSearchTemplate", "loadingTextTemplate", "tagTemplate", "loadingSpinnerTemplate", "clearButtonTemplate", "ngOptions"], never, true, never>;
|
|
426
409
|
static ngAcceptInputType_readonly: unknown;
|
|
427
410
|
static ngAcceptInputType_multiple: unknown;
|
|
428
411
|
static ngAcceptInputType_searchable: unknown;
|
|
429
412
|
static ngAcceptInputType_clearable: unknown;
|
|
413
|
+
static ngAcceptInputType_clearOnBackspace: unknown;
|
|
430
414
|
static ngAcceptInputType_loading: unknown;
|
|
431
415
|
static ngAcceptInputType_closeOnSelect: unknown;
|
|
432
|
-
static ngAcceptInputType_clearOnBackspace: unknown;
|
|
433
416
|
static ngAcceptInputType_hideSelected: unknown;
|
|
434
417
|
static ngAcceptInputType_selectOnTab: unknown;
|
|
435
418
|
static ngAcceptInputType_openOnEnter: unknown;
|
|
@@ -454,16 +437,14 @@ declare class NgSelectConfig {
|
|
|
454
437
|
addTagText: string;
|
|
455
438
|
loadingText: string;
|
|
456
439
|
clearAllText: string;
|
|
457
|
-
|
|
458
|
-
disableVirtualScroll: boolean;
|
|
440
|
+
virtualScroll: boolean;
|
|
459
441
|
openOnEnter: boolean;
|
|
460
442
|
appendTo?: string;
|
|
461
443
|
bindValue?: string;
|
|
462
444
|
bindLabel?: string;
|
|
463
|
-
appearance: string;
|
|
464
445
|
clearSearchOnAdd?: boolean;
|
|
465
446
|
deselectOnClick?: boolean;
|
|
466
|
-
|
|
447
|
+
appearance: string;
|
|
467
448
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgSelectConfig, never>;
|
|
468
449
|
static ɵprov: i0.ɵɵInjectableDeclaration<NgSelectConfig>;
|
|
469
450
|
}
|
|
@@ -472,7 +453,7 @@ declare class NgItemLabel implements OnChanges {
|
|
|
472
453
|
ngItemLabel: string;
|
|
473
454
|
escape: boolean;
|
|
474
455
|
private element;
|
|
475
|
-
ngOnChanges(
|
|
456
|
+
ngOnChanges(): void;
|
|
476
457
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgItemLabel, never>;
|
|
477
458
|
static ɵdir: i0.ɵɵDirectiveDeclaration<NgItemLabel, "[ngItemLabel]", never, { "ngItemLabel": { "alias": "ngItemLabel"; "required": false; }; "escape": { "alias": "escape"; "required": false; }; }, {}, never, never, true, never>;
|
|
478
459
|
}
|
|
@@ -549,4 +530,4 @@ declare class NgSelectModule {
|
|
|
549
530
|
}
|
|
550
531
|
|
|
551
532
|
export { DefaultSelectionModel, DefaultSelectionModelFactory, NgClearButtonTemplate, NgDropdownPanel, NgDropdownPanelUtils, NgFooterTemplate, NgHeaderTemplate, NgItemLabel, NgLabelTemplate, NgLoadingSpinnerTemplate, NgLoadingTextTemplate, NgMultiLabelTemplate, NgNotFoundTemplate, NgOptgroupTemplate, NgOption, NgOptionHighlight, NgOptionTemplate, NgPlaceholderTemplate, NgSelect, NgSelectConfig, NgSelectModule, NgTagTemplate, NgTypeToSearchTemplate, SELECTION_MODEL_FACTORY };
|
|
552
|
-
export type { AddTagFn, CompareWithFn,
|
|
533
|
+
export type { AddTagFn, CompareWithFn, DropdownPanelPosition, GroupValueFn, ItemsRangeResult, NgOptionItem, PanelDimensions, ScrollEvent, SearchEvent, SearchFn, SelectionModel, SelectionModelFactory, TrackByFn };
|
package/package.json
CHANGED
package/scss/default.theme.scss
CHANGED
package/scss/material.theme.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.ng-select{position:relative}.ng-select.ng-select-opened.ng-select-clearable .ng-select-container.ng-has-value:hover .ng-clear-wrapper{opacity:0;pointer-events:none}.ng-select.ng-select-opened.ng-select-clearable .ng-select-container.ng-has-value:hover .ng-arrow-wrapper{opacity:1;pointer-events:auto}.ng-select.ng-select-opened>.ng-select-container{background:#fff;border-color:#40a9ff;box-shadow:0 0 0 2px rgba(24,144,255,.2)}.ng-select.ng-select-opened>.ng-select-container .ng-arrow-wrapper{transform:rotate(180deg);opacity:1}[dir=rtl] .ng-select.ng-select-opened>.ng-select-container .ng-arrow-wrapper{transform:rotate(-180deg)}.ng-select.ng-select-focused .ng-select-container{border-color:#40a9ff}.ng-select.ng-select-disabled>.ng-select-container{background-color:#f5f5f5}.ng-select.ng-select-disabled>.ng-select-container:hover{border:1px solid #d9d9d9;cursor:not-allowed}.ng-select.ng-select-disabled>.ng-select-container .ng-value-container .ng-value{color:rgba(0,0,0,.25)}.ng-select .ng-has-value .ng-placeholder{display:none}.ng-select.ng-select-clearable .ng-select-container.ng-has-value:hover .ng-clear-wrapper{opacity:1}.ng-select.ng-select-clearable .ng-select-container.ng-has-value:hover .ng-arrow-wrapper{opacity:0;pointer-events:none}.ng-select .ng-select-container{color:rgba(0,0,0,.65);background-color:#fff;border-radius:4px;border:1px solid #d9d9d9;min-height:30px;align-items:center;transition:all .3s;box-sizing:border-box;padding-right:11px;padding-left:11px}.ng-select .ng-select-container .ng-input{line-height:22px}.ng-select .ng-select-container .ng-input input{color:rgba(0,0,0,.65)}.ng-select .ng-select-container .ng-value-container{align-items:center}.ng-select .ng-select-container .ng-value-container .ng-value{font-size:14px;color:rgba(0,0,0,.65)}.ng-select .ng-select-container .ng-value-container .ng-placeholder{font-size:14px;color:hsla(0,0%,60%,.65)}.ng-select.ng-select-single.ng-select-opened .ng-select-container .ng-value{opacity:.4}.ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input{top:2px;left:0;padding-left:10px;padding-right:50px}[dir=rtl] .ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input{padding-right:10px;padding-left:50px}.ng-select.ng-select-multiple.ng-select-disabled>.ng-select-container .ng-value-container .ng-value{background-color:#f5f5f5}.ng-select.ng-select-multiple.ng-select-disabled>.ng-select-container .ng-value-container .ng-value .ng-value-label{padding:0 5px}.ng-select.ng-select-multiple .ng-select-container{min-height:32px;padding-left:5px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container{padding-right:5px;padding-left:11px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-placeholder{margin-left:0;margin-right:6px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container{padding-bottom:3px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{margin-top:3px;margin-right:4px;font-size:.9em;background-color:#fafafa;border:1px solid rgb(232.3,232.3,232.3);border-radius:2px;height:24px;line-height:22px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{margin-right:0;margin-left:4px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled{background-color:#f5f5f5;color:rgba(0,0,0,.25)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-label{padding-left:5px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-label{padding-left:0;padding-right:5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-label{display:inline-block;padding:0 5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-
|
|
1
|
+
.ng-select{position:relative}.ng-select.ng-select-opened.ng-select-clearable .ng-select-container.ng-has-value:hover .ng-clear-wrapper{opacity:0;pointer-events:none}.ng-select.ng-select-opened.ng-select-clearable .ng-select-container.ng-has-value:hover .ng-arrow-wrapper{opacity:1;pointer-events:auto}.ng-select.ng-select-opened>.ng-select-container{background:#fff;border-color:#40a9ff;box-shadow:0 0 0 2px rgba(24,144,255,.2)}.ng-select.ng-select-opened>.ng-select-container .ng-arrow-wrapper{transform:rotate(180deg);opacity:1}[dir=rtl] .ng-select.ng-select-opened>.ng-select-container .ng-arrow-wrapper{transform:rotate(-180deg)}.ng-select.ng-select-focused .ng-select-container{border-color:#40a9ff}.ng-select.ng-select-disabled>.ng-select-container{background-color:#f5f5f5}.ng-select.ng-select-disabled>.ng-select-container:hover{border:1px solid #d9d9d9;cursor:not-allowed}.ng-select.ng-select-disabled>.ng-select-container .ng-value-container .ng-value{color:rgba(0,0,0,.25)}.ng-select .ng-has-value .ng-placeholder{display:none}.ng-select.ng-select-clearable .ng-select-container.ng-has-value:hover .ng-clear-wrapper{opacity:1}.ng-select.ng-select-clearable .ng-select-container.ng-has-value:hover .ng-arrow-wrapper{opacity:0;pointer-events:none}.ng-select .ng-select-container{color:rgba(0,0,0,.65);background-color:#fff;border-radius:4px;border:1px solid #d9d9d9;min-height:30px;align-items:center;transition:all .3s;box-sizing:border-box;padding-right:11px;padding-left:11px}.ng-select .ng-select-container .ng-input{line-height:22px}.ng-select .ng-select-container .ng-input input{color:rgba(0,0,0,.65)}.ng-select .ng-select-container .ng-value-container{align-items:center}.ng-select .ng-select-container .ng-value-container .ng-value{font-size:14px;color:rgba(0,0,0,.65)}.ng-select .ng-select-container .ng-value-container .ng-placeholder{font-size:14px;color:hsla(0,0%,60%,.65)}.ng-select.ng-select-single.ng-select-opened .ng-select-container .ng-value{opacity:.4}.ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input{top:2px;left:0;padding-left:10px;padding-right:50px}[dir=rtl] .ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input{padding-right:10px;padding-left:50px}.ng-select.ng-select-multiple.ng-select-disabled>.ng-select-container .ng-value-container .ng-value{background-color:#f5f5f5}.ng-select.ng-select-multiple.ng-select-disabled>.ng-select-container .ng-value-container .ng-value .ng-value-label{padding:0 5px}.ng-select.ng-select-multiple .ng-select-container{min-height:32px;padding-left:5px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container{padding-right:5px;padding-left:11px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-placeholder{margin-left:0;margin-right:6px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container{padding-bottom:3px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{margin-top:3px;margin-right:4px;font-size:.9em;background-color:#fafafa;border:1px solid rgb(232.3,232.3,232.3);border-radius:2px;height:24px;line-height:22px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{margin-right:0;margin-left:4px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled{background-color:#f5f5f5;color:rgba(0,0,0,.25)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-label{padding-left:5px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-label{padding-left:0;padding-right:5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-label{display:inline-block;padding:0 5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-remove{display:inline-block;padding:0 5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-placeholder{top:50%;height:20px;margin-top:-10px;margin-left:6px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input{height:24px;margin-top:3px}.ng-select .ng-clear-wrapper{opacity:0;color:#a6a6a6;background:rgba(0,0,0,.25);width:12px;height:12px;text-align:center;border-radius:12px;vertical-align:middle;transition:color .3s ease;position:absolute;right:13px}[dir=rtl] .ng-select .ng-clear-wrapper{left:13px;right:auto}.ng-select .ng-clear-wrapper:hover{background:rgba(0,0,0,.45)}.ng-select .ng-clear-wrapper:focus{background:rgba(0,0,0,.45);outline:none}.ng-select .ng-clear-wrapper .ng-clear{color:#fff;font-size:9px;position:absolute;left:3px;line-height:12px}.ng-select .ng-spinner-zone{padding:5px 5px 0 0}[dir=rtl] .ng-select .ng-spinner-zone{padding:5px 0 0 5px}.ng-select .ng-arrow-wrapper{width:16px;height:26px;transition:transform .3s}.ng-select .ng-arrow-wrapper .ng-arrow{border-style:solid;border-width:.1rem .1rem 0 0;height:8px;width:8px;top:-2px;transform:rotate(135deg);color:rgba(0,0,0,.25)}.ng-dropdown-panel{background-color:#fff;box-shadow:0 2px 8px rgba(0,0,0,.15);border-radius:4px;margin-top:4px;margin-bottom:4px;left:0}.ng-dropdown-panel.ng-select-top{bottom:100%;border-bottom-color:rgb(242.5,242.5,242.5)}.ng-dropdown-panel.ng-select-right{left:100%;top:0;border-bottom-color:rgb(242.5,242.5,242.5);margin-top:0;margin-left:4px}.ng-dropdown-panel.ng-select-bottom{top:100%;border-top-color:rgb(242.5,242.5,242.5)}.ng-dropdown-panel.ng-select-left{left:calc(-100% - 4px);top:0;border-bottom-color:rgb(242.5,242.5,242.5);margin-top:0}.ng-dropdown-panel .ng-dropdown-header{border-bottom:1px solid #d9d9d9;padding:5px 7px}.ng-dropdown-panel .ng-dropdown-footer{border-top:1px solid #d9d9d9;padding:5px 7px}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup{user-select:none;padding:4px 12px;color:rgba(0,0,0,.45);cursor:pointer}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-disabled{cursor:default;color:rgba(0,0,0,.45)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-marked{background-color:#e6f7ff}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected{background-color:#fafafa;font-weight:600}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected.ng-option-marked{background-color:#e6f7ff}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option{background-color:#fff;color:rgba(0,0,0,.65);padding:5px 12px;transition:background .3s ease}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option:last-child{border-bottom-right-radius:4px;border-bottom-left-radius:4px}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected{background-color:#fafafa;font-weight:600}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected.ng-option-marked{color:rgba(0,0,0,.65);background-color:#e6f7ff}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-marked{background-color:#e6f7ff;color:rgba(0,0,0,.65)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-disabled{color:rgba(0,0,0,.25);cursor:not-allowed}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-child{padding-left:20px}[dir=rtl] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-child{padding-right:20px;padding-left:0}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-option-label{font-size:14px}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label{font-size:80%;font-weight:400;padding-right:5px}[dir=rtl] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label{padding-left:5px;padding-right:0}[dir=rtl] .ng-dropdown-panel{direction:rtl;text-align:right}/*# sourceMappingURL=ant.design.theme.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../../projects/ng-select/themes/ant.design.theme.scss","../../../projects/ng-select/themes/_mixins.scss"],"names":[],"mappings":"AAYA,WACC,kBAIE,0GACC,UACA,oBAGD,0GACC,UACA,oBAIF,iDACC,WArBY,KAsBZ,aA3BmB,QA4BnB,yCAEA,mEACC,yBACA,UClCM,6EDoCL,0BAOH,kDACC,aA1CmB,QA+CpB,mDACC,iBA7CqB,QA+CrB,yDACC,yBACA,mBAIA,iFACC,MAvDqB,gBA6DzB,yCACC,aAIA,yFACC,UAGD,yFACC,UACA,oBAIF,gCACC,MA9EuB,gBA+EvB,iBA3Ea,KA4Eb,kBACA,yBACA,gBACA,mBACA,mBACA,sBACA,mBACA,kBAEA,0CACC,iBAEA,gDACC,MA7FqB,gBAiGvB,oDACC,mBAEA,8DACC,eACA,MAtGqB,gBAyGtB,oEACC,eACA,yBAMF,4EACC,WAKC,+EACC,QACA,OACA,kBACA,mBC9HK,yFDgIJ,mBACA,kBASH,oGACC,iBAtIoB,QAwIpB,oHACC,cAKH,mDACC,gBACA,iBCrJO,6DDwJN,kBACA,kBAEA,iGACC,cACA,iBAIF,uEACC,mBAEA,iFACC,eACA,iBACA,eACA,yBACA,wCACA,kBACA,YACA,iBC5KK,2FD8KJ,eACA,gBAGD,mGACC,iBA9KkB,QA+KlB,MAhLoB,gBAkLpB,mHACC,iBCvLG,6HDyLF,eACA,kBAKH,iGACC,qBACA,cAGD,
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../projects/ng-select/themes/ant.design.theme.scss","../../../projects/ng-select/themes/_mixins.scss"],"names":[],"mappings":"AAYA,WACC,kBAIE,0GACC,UACA,oBAGD,0GACC,UACA,oBAIF,iDACC,WArBY,KAsBZ,aA3BmB,QA4BnB,yCAEA,mEACC,yBACA,UClCM,6EDoCL,0BAOH,kDACC,aA1CmB,QA+CpB,mDACC,iBA7CqB,QA+CrB,yDACC,yBACA,mBAIA,iFACC,MAvDqB,gBA6DzB,yCACC,aAIA,yFACC,UAGD,yFACC,UACA,oBAIF,gCACC,MA9EuB,gBA+EvB,iBA3Ea,KA4Eb,kBACA,yBACA,gBACA,mBACA,mBACA,sBACA,mBACA,kBAEA,0CACC,iBAEA,gDACC,MA7FqB,gBAiGvB,oDACC,mBAEA,8DACC,eACA,MAtGqB,gBAyGtB,oEACC,eACA,yBAMF,4EACC,WAKC,+EACC,QACA,OACA,kBACA,mBC9HK,yFDgIJ,mBACA,kBASH,oGACC,iBAtIoB,QAwIpB,oHACC,cAKH,mDACC,gBACA,iBCrJO,6DDwJN,kBACA,kBAEA,iGACC,cACA,iBAIF,uEACC,mBAEA,iFACC,eACA,iBACA,eACA,yBACA,wCACA,kBACA,YACA,iBC5KK,2FD8KJ,eACA,gBAGD,mGACC,iBA9KkB,QA+KlB,MAhLoB,gBAkLpB,mHACC,iBCvLG,6HDyLF,eACA,kBAKH,iGACC,qBACA,cAGD,kGACC,qBACA,cAIF,uFACC,QACA,YACA,iBACA,gBAGD,iFACC,YACA,eAMJ,6BACC,UACA,cACA,2BACA,WACA,YACA,kBACA,mBACA,sBACA,0BACA,kBACA,WCpOQ,uCDsOP,UACA,WAGD,mCACC,2BAGD,mCACC,2BACA,aAGD,uCACC,WACA,cACA,kBACA,SACA,iBAIF,4BACC,oBC7PQ,sCDgQP,oBAIF,6BACC,WACA,YACA,yBAEA,uCACC,mBACA,6BACA,WACA,UACA,SACA,yBACA,MA5QuB,gBAiR1B,mBACC,iBA/Qc,KAgRd,qCACA,kBACA,eACA,kBACA,OAEA,iCACC,YACA,2CAGD,mCACC,UACA,MACA,2CACA,aACA,gBAGD,oCACC,SACA,wCAGD,kCACC,uBACA,MACA,2CACA,aAGD,uCACC,gCACA,gBAGD,uCACC,6BACA,gBAIA,yDACC,iBACA,iBACA,sBACA,eAEA,4EACC,eACA,sBAGD,0EACC,iBApUe,QAuUhB,4EACC,yBACA,gBAGD,6FACC,iBA7Ue,QAiVjB,uDACC,iBApVY,KAqVZ,MAzVsB,gBA0VtB,iBACA,+BAEA,mEACC,4BACA,2BAGD,kEACC,+BACA,8BAGD,0EACC,yBACA,gBAGD,2FACC,MA7WqB,gBA8WrB,iBAxWe,QA2WhB,wEACC,iBA5We,QA6Wf,MAnXqB,gBAsXtB,0EACC,MAtXsB,gBAuXtB,mBAGD,uEACC,kBC/XM,iFDiYL,mBACA,eAIF,wEACC,eAGD,qEACC,cACA,gBACA,kBC7YM,+ED+YL,iBACA,gBChZK,6BDuZR,cACA","file":"ant.design.theme.css"}
|
package/themes/default.theme.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.ng-select.ng-select-opened>.ng-select-container{background:#fff;border-color:hsl(0,0%,70%) #ccc hsl(0,0%,85%)}.ng-select.ng-select-opened>.ng-select-container:hover{box-shadow:none}.ng-select.ng-select-opened>.ng-select-container .ng-arrow{top:-2px;border-color:rgba(0,0,0,0) rgba(0,0,0,0) #999;border-width:0 5px 5px}.ng-select.ng-select-opened>.ng-select-container .ng-arrow:hover{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #333}.ng-select.ng-select-opened.ng-select-top>.ng-select-container{border-top-right-radius:0;border-top-left-radius:0}.ng-select.ng-select-opened.ng-select-right>.ng-select-container{border-top-right-radius:0;border-bottom-right-radius:0}.ng-select.ng-select-opened.ng-select-bottom>.ng-select-container{border-bottom-right-radius:0;border-bottom-left-radius:0}.ng-select.ng-select-opened.ng-select-left>.ng-select-container{border-top-left-radius:0;border-bottom-left-radius:0}.ng-select.ng-select-focused:not(.ng-select-opened)>.ng-select-container{border-color:#007eff;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 0 3px rgba(0,126,255,.1)}.ng-select.ng-select-disabled>.ng-select-container{background-color:#f9f9f9}.ng-select .ng-has-value .ng-placeholder{display:none}.ng-select .ng-select-container{color:#333;background-color:#fff;border-radius:4px;border:1px solid #ccc;min-height:36px;align-items:center}.ng-select .ng-select-container:hover{box-shadow:0 1px 0 rgba(0,0,0,.06)}.ng-select .ng-select-container .ng-value-container{align-items:center;padding-left:10px}[dir=rtl] .ng-select .ng-select-container .ng-value-container{padding-right:10px;padding-left:0}.ng-select .ng-select-container .ng-value-container .ng-placeholder{color:#999}.ng-select.ng-select-single .ng-select-container{height:36px}.ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input{top:5px;left:0;padding-left:10px;padding-right:50px}[dir=rtl] .ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input{padding-right:10px;padding-left:50px}.ng-select.ng-select-multiple.ng-select-disabled>.ng-select-container .ng-value-container .ng-value{background-color:#f9f9f9;border:1px solid hsl(0,0%,90%)}.ng-select.ng-select-multiple.ng-select-disabled>.ng-select-container .ng-value-container .ng-value .ng-value-label{padding:0 5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container{padding-top:5px;padding-left:7px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container{padding-right:7px;padding-left:0}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{font-size:.9em;margin-bottom:5px;color:#333;background-color:rgb(234.6,244.68,255);border-radius:2px;margin-right:5px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{margin-right:0;margin-left:5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled{background-color:#f9f9f9}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-label{padding-left:5px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-label{padding-left:0;padding-right:5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-label{display:inline-block;padding:1px 5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-
|
|
1
|
+
.ng-select.ng-select-opened>.ng-select-container{background:#fff;border-color:hsl(0,0%,70%) #ccc hsl(0,0%,85%)}.ng-select.ng-select-opened>.ng-select-container:hover{box-shadow:none}.ng-select.ng-select-opened>.ng-select-container .ng-arrow{top:-2px;border-color:rgba(0,0,0,0) rgba(0,0,0,0) #999;border-width:0 5px 5px}.ng-select.ng-select-opened>.ng-select-container .ng-arrow:hover{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #333}.ng-select.ng-select-opened.ng-select-top>.ng-select-container{border-top-right-radius:0;border-top-left-radius:0}.ng-select.ng-select-opened.ng-select-right>.ng-select-container{border-top-right-radius:0;border-bottom-right-radius:0}.ng-select.ng-select-opened.ng-select-bottom>.ng-select-container{border-bottom-right-radius:0;border-bottom-left-radius:0}.ng-select.ng-select-opened.ng-select-left>.ng-select-container{border-top-left-radius:0;border-bottom-left-radius:0}.ng-select.ng-select-focused:not(.ng-select-opened)>.ng-select-container{border-color:#007eff;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 0 3px rgba(0,126,255,.1)}.ng-select.ng-select-disabled>.ng-select-container{background-color:#f9f9f9}.ng-select .ng-has-value .ng-placeholder{display:none}.ng-select .ng-select-container{color:#333;background-color:#fff;border-radius:4px;border:1px solid #ccc;min-height:36px;align-items:center}.ng-select .ng-select-container:hover{box-shadow:0 1px 0 rgba(0,0,0,.06)}.ng-select .ng-select-container .ng-value-container{align-items:center;padding-left:10px}[dir=rtl] .ng-select .ng-select-container .ng-value-container{padding-right:10px;padding-left:0}.ng-select .ng-select-container .ng-value-container .ng-placeholder{color:#999}.ng-select.ng-select-single .ng-select-container{height:36px}.ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input{top:5px;left:0;padding-left:10px;padding-right:50px}[dir=rtl] .ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input{padding-right:10px;padding-left:50px}.ng-select.ng-select-multiple.ng-select-disabled>.ng-select-container .ng-value-container .ng-value{background-color:#f9f9f9;border:1px solid hsl(0,0%,90%)}.ng-select.ng-select-multiple.ng-select-disabled>.ng-select-container .ng-value-container .ng-value .ng-value-label{padding:0 5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container{padding-top:5px;padding-left:7px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container{padding-right:7px;padding-left:0}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{font-size:.9em;margin-bottom:5px;color:#333;background-color:rgb(234.6,244.68,255);border-radius:2px;margin-right:5px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{margin-right:0;margin-left:5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled{background-color:#f9f9f9}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-label{padding-left:5px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-label{padding-left:0;padding-right:5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-label{display:inline-block;padding:1px 5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-remove{display:inline-block;padding:1px 5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-remove:hover{background-color:rgb(209.1,231.78,255)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-remove.left{border-right:1px solid rgb(183.6,218.88,255)}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-remove.left{border-left:1px solid rgb(183.6,218.88,255);border-right:none}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-remove.right{border-left:1px solid rgb(183.6,218.88,255)}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-remove.right{border-left:0;border-right:1px solid rgb(183.6,218.88,255)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input{padding:0 0 3px 3px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input{padding:0 3px 3px 0}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input>input{color:#000}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-placeholder{top:5px;padding-bottom:5px;padding-left:3px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-placeholder{padding-right:3px;padding-left:0}.ng-select .ng-clear-wrapper{color:#999}.ng-select .ng-clear-wrapper:hover .ng-clear{color:#d0021b}.ng-select .ng-clear-wrapper:focus .ng-clear{color:#d0021b}.ng-select .ng-clear-wrapper:focus{outline:none}.ng-select .ng-spinner-zone{padding:5px 5px 0 0}[dir=rtl] .ng-select .ng-spinner-zone{padding:5px 0 0 5px}.ng-select .ng-arrow-wrapper{width:25px;padding-right:5px}[dir=rtl] .ng-select .ng-arrow-wrapper{padding-left:5px;padding-right:0}.ng-select .ng-arrow-wrapper:hover .ng-arrow{border-top-color:#666}.ng-select .ng-arrow-wrapper .ng-arrow{border-color:#999 rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 5px 2.5px}.ng-dropdown-panel{background-color:#fff;border:1px solid #ccc;box-shadow:0 1px 0 rgba(0,0,0,.06);left:0}.ng-dropdown-panel.ng-select-top{bottom:100%;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-color:hsl(0,0%,90%);margin-bottom:-1px}.ng-dropdown-panel.ng-select-top .ng-dropdown-panel-items .ng-option:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.ng-dropdown-panel.ng-select-right{left:100%;top:0;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;border-bottom-color:hsl(0,0%,90%);margin-bottom:-1px}.ng-dropdown-panel.ng-select-right .ng-dropdown-panel-items .ng-option:first-child{border-top-right-radius:4px}.ng-dropdown-panel.ng-select-bottom{top:100%;border-bottom-right-radius:4px;border-bottom-left-radius:4px;border-top-color:hsl(0,0%,90%);margin-top:-1px}.ng-dropdown-panel.ng-select-bottom .ng-dropdown-panel-items .ng-option:last-child{border-bottom-right-radius:4px;border-bottom-left-radius:4px}.ng-dropdown-panel.ng-select-left{left:-100%;top:0;border-top-left-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;border-bottom-color:hsl(0,0%,90%);margin-bottom:-1px}.ng-dropdown-panel.ng-select-left .ng-dropdown-panel-items .ng-option:first-child{border-top-left-radius:4px}.ng-dropdown-panel .ng-dropdown-header{border-bottom:1px solid #ccc;padding:5px 7px}.ng-dropdown-panel .ng-dropdown-footer{border-top:1px solid #ccc;padding:5px 7px}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup{user-select:none;padding:8px 10px;font-weight:500;color:rgba(0,0,0,.54);cursor:pointer}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-disabled{cursor:default}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-marked{background-color:rgb(244.8,249.84,255)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected,.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected.ng-option-marked{color:rgba(0,0,0,.54);background-color:rgb(234.6,244.68,255);font-weight:600}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option{background-color:#fff;color:rgba(0,0,0,.87);padding:8px 10px}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected,.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected.ng-option-marked{color:#333;background-color:rgb(234.6,244.68,255)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected .ng-option-label,.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected.ng-option-marked .ng-option-label{font-weight:600}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-marked{background-color:rgb(244.8,249.84,255);color:#333}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-disabled{color:#ccc}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-child{padding-left:22px}[dir=rtl] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-child{padding-right:22px;padding-left:0}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label{font-size:80%;font-weight:400;padding-right:5px}[dir=rtl] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label{padding-left:5px;padding-right:0}[dir=rtl] .ng-dropdown-panel{direction:rtl;text-align:right}/*# sourceMappingURL=default.theme.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../../projects/ng-select/themes/default.theme.scss","../../../projects/ng-select/themes/_mixins.scss"],"names":[],"mappings":"AAoCE,iDACC,WA7BY,KA8BZ,8CAEA,uDACC,gBAGD,2DACC,SACA,8CACA,uBAEA,iEACC,8CAMF,+DACC,0BACA,yBAKD,iEACC,0BACA,6BAKD,kEACC,6BACA,4BAKD,gEACC,yBACA,4BAMF,yEACC,aAnFmB,QAoFnB,WAvEF,8DA4EC,mDACC,iBAxFuB,QA4FzB,yCACC,aAGD,gCACC,MAlGuB,KAmGvB,iBA/Fa,KAgGb,cAjGwB,IAkGxB,sBACA,WAvFiB,KAwFjB,mBAEA,sCACC,mCAGD,oDACC,mBACA,aA/F4B,KCnBrB,8DDoHN,cAjG2B,KAkG3B,eAGD,oEACC,MAxGoB,KA8GtB,iDACC,OA9GgB,KAiHf,+EACC,QACA,OACA,aAnH0B,KAoH1B,mBCvIK,yFDyIJ,cAtHyB,KAuHzB,kBASH,oGACC,iBAhJsB,QAiJtB,+BAEA,oHACC,cAMF,uEACC,gBACA,iBChKM,iFDkKL,kBACA,eAGD,iFACC,UAnJuB,KAoJvB,kBACA,MAtKoB,KAuKpB,iBAlKgB,sBAmKhB,kBACA,iBC5KK,2FD8KJ,eACA,gBAGD,mGACC,iBA/KoB,QAiLpB,mHACC,iBCtLG,6HDwLF,eACA,kBAKH,iGACC,qBACA,gBAGD,
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../projects/ng-select/themes/default.theme.scss","../../../projects/ng-select/themes/_mixins.scss"],"names":[],"mappings":"AAoCE,iDACC,WA7BY,KA8BZ,8CAEA,uDACC,gBAGD,2DACC,SACA,8CACA,uBAEA,iEACC,8CAMF,+DACC,0BACA,yBAKD,iEACC,0BACA,6BAKD,kEACC,6BACA,4BAKD,gEACC,yBACA,4BAMF,yEACC,aAnFmB,QAoFnB,WAvEF,8DA4EC,mDACC,iBAxFuB,QA4FzB,yCACC,aAGD,gCACC,MAlGuB,KAmGvB,iBA/Fa,KAgGb,cAjGwB,IAkGxB,sBACA,WAvFiB,KAwFjB,mBAEA,sCACC,mCAGD,oDACC,mBACA,aA/F4B,KCnBrB,8DDoHN,cAjG2B,KAkG3B,eAGD,oEACC,MAxGoB,KA8GtB,iDACC,OA9GgB,KAiHf,+EACC,QACA,OACA,aAnH0B,KAoH1B,mBCvIK,yFDyIJ,cAtHyB,KAuHzB,kBASH,oGACC,iBAhJsB,QAiJtB,+BAEA,oHACC,cAMF,uEACC,gBACA,iBChKM,iFDkKL,kBACA,eAGD,iFACC,UAnJuB,KAoJvB,kBACA,MAtKoB,KAuKpB,iBAlKgB,sBAmKhB,kBACA,iBC5KK,2FD8KJ,eACA,gBAGD,mGACC,iBA/KoB,QAiLpB,mHACC,iBCtLG,6HDwLF,eACA,kBAKH,iGACC,qBACA,gBAGD,kGACC,qBACA,gBAEA,wGACC,uCAGD,uGACC,6CC5MG,iHD8MF,4CACA,kBAIF,wGACC,4CCpNG,kHDsNF,cACA,6CAMJ,iFACC,oBC9NK,2FDgOJ,oBAGD,uFACC,MArMiB,KAyMnB,uFACC,QACA,mBACA,iBC3OK,iGD6OJ,kBACA,eAOL,6BACC,WAEA,6CACC,cAGD,6CACC,cAGD,mCACC,aAIF,4BACC,oBCtQQ,sCDyQP,oBAIF,6BACC,WACA,kBC/QQ,uCDiRP,iBACA,gBAIA,6CACC,sBAIF,uCACC,8CACA,mBACA,2BAKH,mBACC,iBA7Rc,KA8Rd,sBACA,mCACA,OAEA,iCACC,YACA,wBArSwB,IAsSxB,uBAtSwB,IAuSxB,kCACA,mBAIE,iFACC,wBA7SqB,IA8SrB,uBA9SqB,IAoTzB,mCACC,UACA,MACA,wBAvTwB,IAwTxB,2BAxTwB,IAyTxB,0BAzTwB,IA0TxB,kCACA,mBAIE,mFACC,wBAhUqB,IAsUzB,oCACC,SACA,2BAxUwB,IAyUxB,0BAzUwB,IA0UxB,+BACA,gBAIE,mFACC,2BAhVqB,IAiVrB,0BAjVqB,IAuVzB,kCACC,WACA,MACA,uBA1VwB,IA2VxB,2BA3VwB,IA4VxB,0BA5VwB,IA6VxB,kCACA,mBAIE,kFACC,uBAnWqB,IAyWzB,uCACC,6BACA,gBAGD,uCACC,0BACA,gBAIA,yDACC,iBACA,iBACA,gBACA,MArWgC,gBAsWhC,eAEA,4EACC,eAGD,0EACC,iBA3Xe,sBA8XhB,yKAEC,MAlX+B,gBAmX/B,iBApYiB,sBAqYjB,gBAIF,uDACC,iBA3YY,KA4YZ,MAvX8B,gBAwX9B,iBAEA,qKAEC,MArZqB,KAsZrB,iBAjZiB,sBAmZjB,uMACC,gBAIF,wEACC,iBAtZe,sBAuZf,MA/ZqB,KAkatB,0EACC,MAzYiC,KA4YlC,uEACC,kBC1aM,iFD4aL,mBACA,eAIF,qEACC,cACA,gBACA,kBCpbM,+EDsbL,iBACA,gBCvbK,6BD8bR,cACA","file":"default.theme.css"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.ng-select{padding-bottom:1.25em}.ng-select.ng-select-disabled .ng-select-container::after{border-bottom-color:rgba(0,0,0,0);background-image:linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);background-size:4px 1px;background-repeat:repeat-x}.ng-select.ng-select-disabled .ng-select-container .ng-value-container .ng-value{color:rgba(0,0,0,.38)}.ng-select.ng-select-disabled .ng-select-container .ng-value-container .ng-placeholder{color:rgba(0,0,0,.38)}.ng-select.ng-select-disabled .ng-arrow-wrapper .ng-arrow,.ng-select.ng-select-disabled .ng-clear-wrapper{color:rgba(0,0,0,.38)}.ng-select.ng-select-focused .ng-select-container::after{border-color:#3f51b5;border-width:2px}.ng-select.ng-select-focused .ng-select-container.ng-appearance-outline::after,.ng-select.ng-select-focused .ng-select-container.ng-appearance-outline:hover::after{border-color:#3f51b5;border-width:2px}.ng-select.ng-select-focused .ng-select-container .ng-value-container .ng-placeholder{transform:translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);color:#3f51b5}.ng-select.ng-select-focused .ng-select-container .ng-arrow-wrapper .ng-arrow{color:#3f51b5}.ng-select .ng-has-value .ng-placeholder,.ng-select.ng-select-filtered .ng-select-container .ng-placeholder{display:initial}.ng-select .ng-has-value .ng-placeholder,.ng-select.ng-select-opened .ng-placeholder{transform:translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px)}.ng-select .ng-select-container{color:rgba(0,0,0,.87);align-items:baseline;min-height:51.5px}.ng-select .ng-select-container::after{border-bottom:thin solid rgba(0,0,0,.42);content:"";bottom:0;left:0;right:0;position:absolute;transition:border-color .3s cubic-bezier(0.55, 0, 0.55, 0.2)}.ng-select .ng-select-container.ng-appearance-outline{padding:0 .5em;min-height:60px}.ng-select .ng-select-container.ng-appearance-outline::after{border:solid 1px rgba(0,0,0,.12);border-radius:5px;height:calc(100% - .5em);pointer-events:none;transition:border-color .3s cubic-bezier(0.25, 0.8, 0.25, 1)}.ng-select .ng-select-container.ng-appearance-outline:hover::after{border-color:rgba(0,0,0,.87);border-width:2px}.ng-select .ng-select-container.ng-appearance-outline .ng-placeholder{padding:0 .25em;background-color:#fff;z-index:1}.ng-select .ng-select-container.ng-appearance-outline .ng-value{padding-left:.25em}.ng-select .ng-select-container .ng-value-container{align-items:stretch;padding:.4375em 0;border-top:.84375em solid rgba(0,0,0,0)}.ng-select .ng-select-container .ng-value-container .ng-placeholder{position:absolute;color:rgba(0,0,0,.54);transform-origin:left 0;transition:transform .4s cubic-bezier(0.25, 0.8, 0.25, 1),color .4s cubic-bezier(0.25, 0.8, 0.25, 1),width .4s cubic-bezier(0.25, 0.8, 0.25, 1)}[dir=rtl] .ng-select .ng-select-container .ng-value-container .ng-placeholder{transform-origin:right 0}.ng-select .ng-select-container .ng-value-container .ng-input{bottom:.4375em}.ng-select.ng-select-single .ng-select-container.ng-appearance-outline .ng-arrow-wrapper{bottom:17px}.ng-select.ng-select-single .ng-select-container.ng-appearance-outline .ng-clear-wrapper{bottom:14px}.ng-select.ng-select-single .ng-select-container .ng-arrow-wrapper{align-self:flex-end;bottom:9px}.ng-select.ng-select-single .ng-select-container .ng-clear-wrapper{align-self:flex-end;bottom:7px}.ng-select.ng-select-multiple.ng-select-disabled .ng-select-container .ng-value-container .ng-value{background-color:rgba(0,0,0,.12);color:rgba(0,0,0,.26)}.ng-select.ng-select-multiple.ng-select-disabled .ng-appearance-outline::after,.ng-select.ng-select-multiple.ng-select-disabled .ng-appearance-outline:hover::after{background-image:none;border:dotted 1px rgba(0,0,0,.12)}.ng-select.ng-select-multiple .ng-select-container.ng-appearance-outline.ng-has-value .ng-arrow-wrapper,.ng-select.ng-select-multiple .ng-select-container.ng-appearance-outline.ng-has-value .ng-clear-wrapper{border-top:none}.ng-select.ng-select-multiple .ng-select-container.ng-appearance-outline .ng-arrow-wrapper{top:0}.ng-select.ng-select-multiple .ng-select-container.ng-appearance-outline .ng-clear-wrapper{top:4px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{background-color:#3f51b5;border-radius:2px;color:#fff;padding:2px 5px;margin:0 .4375em .4375em 0}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{margin:0 0 .4375em .4375em}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled{background-color:rgba(0,0,0,.12);color:rgba(0,0,0,.26)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-label{font-size:14px;font-weight:500}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-
|
|
1
|
+
.ng-select{padding-bottom:1.25em}.ng-select.ng-select-disabled .ng-select-container::after{border-bottom-color:rgba(0,0,0,0);background-image:linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);background-size:4px 1px;background-repeat:repeat-x}.ng-select.ng-select-disabled .ng-select-container .ng-value-container .ng-value{color:rgba(0,0,0,.38)}.ng-select.ng-select-disabled .ng-select-container .ng-value-container .ng-placeholder{color:rgba(0,0,0,.38)}.ng-select.ng-select-disabled .ng-arrow-wrapper .ng-arrow,.ng-select.ng-select-disabled .ng-clear-wrapper{color:rgba(0,0,0,.38)}.ng-select.ng-select-focused .ng-select-container::after{border-color:#3f51b5;border-width:2px}.ng-select.ng-select-focused .ng-select-container.ng-appearance-outline::after,.ng-select.ng-select-focused .ng-select-container.ng-appearance-outline:hover::after{border-color:#3f51b5;border-width:2px}.ng-select.ng-select-focused .ng-select-container .ng-value-container .ng-placeholder{transform:translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);color:#3f51b5}.ng-select.ng-select-focused .ng-select-container .ng-arrow-wrapper .ng-arrow{color:#3f51b5}.ng-select .ng-has-value .ng-placeholder,.ng-select.ng-select-filtered .ng-select-container .ng-placeholder{display:initial}.ng-select .ng-has-value .ng-placeholder,.ng-select.ng-select-opened .ng-placeholder{transform:translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px)}.ng-select .ng-select-container{color:rgba(0,0,0,.87);align-items:baseline;min-height:51.5px}.ng-select .ng-select-container::after{border-bottom:thin solid rgba(0,0,0,.42);content:"";bottom:0;left:0;right:0;position:absolute;transition:border-color .3s cubic-bezier(0.55, 0, 0.55, 0.2)}.ng-select .ng-select-container.ng-appearance-outline{padding:0 .5em;min-height:60px}.ng-select .ng-select-container.ng-appearance-outline::after{border:solid 1px rgba(0,0,0,.12);border-radius:5px;height:calc(100% - .5em);pointer-events:none;transition:border-color .3s cubic-bezier(0.25, 0.8, 0.25, 1)}.ng-select .ng-select-container.ng-appearance-outline:hover::after{border-color:rgba(0,0,0,.87);border-width:2px}.ng-select .ng-select-container.ng-appearance-outline .ng-placeholder{padding:0 .25em;background-color:#fff;z-index:1}.ng-select .ng-select-container.ng-appearance-outline .ng-value{padding-left:.25em}.ng-select .ng-select-container .ng-value-container{align-items:stretch;padding:.4375em 0;border-top:.84375em solid rgba(0,0,0,0)}.ng-select .ng-select-container .ng-value-container .ng-placeholder{position:absolute;color:rgba(0,0,0,.54);transform-origin:left 0;transition:transform .4s cubic-bezier(0.25, 0.8, 0.25, 1),color .4s cubic-bezier(0.25, 0.8, 0.25, 1),width .4s cubic-bezier(0.25, 0.8, 0.25, 1)}[dir=rtl] .ng-select .ng-select-container .ng-value-container .ng-placeholder{transform-origin:right 0}.ng-select .ng-select-container .ng-value-container .ng-input{bottom:.4375em}.ng-select.ng-select-single .ng-select-container.ng-appearance-outline .ng-arrow-wrapper{bottom:17px}.ng-select.ng-select-single .ng-select-container.ng-appearance-outline .ng-clear-wrapper{bottom:14px}.ng-select.ng-select-single .ng-select-container .ng-arrow-wrapper{align-self:flex-end;bottom:9px}.ng-select.ng-select-single .ng-select-container .ng-clear-wrapper{align-self:flex-end;bottom:7px}.ng-select.ng-select-multiple.ng-select-disabled .ng-select-container .ng-value-container .ng-value{background-color:rgba(0,0,0,.12);color:rgba(0,0,0,.26)}.ng-select.ng-select-multiple.ng-select-disabled .ng-appearance-outline::after,.ng-select.ng-select-multiple.ng-select-disabled .ng-appearance-outline:hover::after{background-image:none;border:dotted 1px rgba(0,0,0,.12)}.ng-select.ng-select-multiple .ng-select-container.ng-appearance-outline.ng-has-value .ng-arrow-wrapper,.ng-select.ng-select-multiple .ng-select-container.ng-appearance-outline.ng-has-value .ng-clear-wrapper{border-top:none}.ng-select.ng-select-multiple .ng-select-container.ng-appearance-outline .ng-arrow-wrapper{top:0}.ng-select.ng-select-multiple .ng-select-container.ng-appearance-outline .ng-clear-wrapper{top:4px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{background-color:#3f51b5;border-radius:2px;color:#fff;padding:2px 5px;margin:0 .4375em .4375em 0}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{margin:0 0 .4375em .4375em}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled{background-color:rgba(0,0,0,.12);color:rgba(0,0,0,.26)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-label{font-size:14px;font-weight:500}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-remove{color:hsla(0,0%,100%,.54);padding-right:5px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-remove{padding-left:5px;padding-right:0}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-remove:hover{color:hsla(0,0%,100%,.87)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input{line-height:1.375em}.ng-select.ng-select-multiple .ng-select-container.ng-has-value{align-items:center}.ng-select.ng-select-multiple .ng-select-container.ng-has-value .ng-value-container{padding-bottom:0;padding-top:.1875em}.ng-select.ng-select-multiple .ng-select-container.ng-has-value .ng-clear-wrapper,.ng-select.ng-select-multiple .ng-select-container.ng-has-value .ng-arrow-wrapper{border-top:.84375em solid rgba(0,0,0,0)}.ng-select .ng-clear-wrapper{color:rgba(0,0,0,.54)}.ng-select .ng-clear-wrapper:hover{color:rgba(0,0,0,.87)}.ng-select .ng-clear-wrapper:focus{color:rgba(0,0,0,.87);outline:none}.ng-select .ng-arrow-wrapper{bottom:2px}.ng-select .ng-arrow-wrapper .ng-arrow{border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0);border-top:5px solid;margin:0 4px;color:rgba(0,0,0,.54)}.ng-select .ng-spinner-zone{top:3px}.ng-dropdown-panel{background:#fff;left:0}.ng-dropdown-panel.ng-select-top{bottom:calc(100% - .84375em);box-shadow:0 -5px 5px -3px rgba(0,0,0,.2),0 -8px 10px 1px rgba(0,0,0,.14),0 -3px 14px 2px rgba(0,0,0,.12)}.ng-dropdown-panel.ng-select-right{left:100%;top:calc(0% + .84375em);box-shadow:0 -5px 5px -3px rgba(0,0,0,.2),0 -8px 10px 1px rgba(0,0,0,.14),0 -3px 14px 2px rgba(0,0,0,.12);margin-left:4px}.ng-dropdown-panel.ng-select-bottom{top:calc(100% - 1.25em);box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.ng-dropdown-panel.ng-select-left{left:calc(-100% - 4px);top:calc(0% + .84375em);box-shadow:0 -5px 5px -3px rgba(0,0,0,.2),0 -8px 10px 1px rgba(0,0,0,.14),0 -3px 14px 2px rgba(0,0,0,.12)}.ng-dropdown-panel.multiple .ng-option.selected{background:#fff}.ng-dropdown-panel.multiple .ng-option.marked{background:rgba(0,0,0,.04)}.ng-dropdown-panel .ng-dropdown-header{border-bottom:1px solid rgba(0,0,0,.12);padding:0 16px;line-height:3em;min-height:3em}.ng-dropdown-panel .ng-dropdown-footer{border-top:1px solid rgba(0,0,0,.12);padding:0 16px;line-height:3em;min-height:3em}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup{user-select:none;cursor:pointer;line-height:3em;height:3em;padding:0 16px;color:rgba(0,0,0,.54);font-weight:500}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-marked{background:rgba(0,0,0,.04)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-disabled{cursor:default}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected{background:rgba(0,0,0,.12);color:#3f51b5}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option{line-height:3em;min-height:3em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding:0 16px;text-decoration:none;position:relative;color:rgba(0,0,0,.87);text-align:left}[dir=rtl] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option{text-align:right}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-marked{background:rgba(0,0,0,.04);color:rgba(0,0,0,.87)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected{background:rgba(0,0,0,.12);color:#3f51b5}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-disabled{color:rgba(0,0,0,.38)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-child{padding-left:32px}[dir=rtl] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-child{padding-right:32px;padding-left:0}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label{padding-right:5px}[dir=rtl] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label{padding-left:5px;padding-right:0}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label{font-size:80%;font-weight:400;color:rgba(0,0,0,.38)}/*# sourceMappingURL=material.theme.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../../projects/ng-select/themes/material.theme.scss","../../../projects/ng-select/themes/_mixins.scss"],"names":[],"mappings":"AAWA,WACC,sBAIE,0DACC,kCACA,4GACA,wBACA,2BAIA,iFACC,MAlBqB,gBAqBtB,uFACC,MAtBqB,gBA2BxB,0GAEC,MA7BuB,gBAmCvB,yDACC,aAzCkB,QA0ClB,iBAIA,oKAEC,aAhDiB,QAiDjB,iBAIF,sFACC,oFACA,MAvDkB,QA0DnB,8EACC,MA3DkB,QAkEpB,4GACC,gBAMD,qFACC,oFAIF,gCACC,MA9EuB,gBA+EvB,qBACA,kBAEA,uCACC,yCACA,WACA,SACA,OACA,QACA,kBACA,6DAGD,sDACC,eACA,gBAEA,6DACC,iCACA,kBACA,yBACA,oBACA,6DAGD,mEACC,aAzGqB,gBA0GrB,iBAGD,sEACC,gBACA,iBAzGW,KA0GX,UAGD,gEACC,mBAIF,oDACC,oBACA,kBACA,wCAEA,oEACC,kBACA,MA7HuB,gBA8HvB,wBACA,WACC,qICpIK,8EDwIL,yBAIF,8DACC,eAQA,yFACC,YAGD,yFACC,YAIF,mEACC,oBACA,WAGD,mEACC,oBACA,WAOD,oGACC,iBAtKgB,gBAuKhB,sBAIA,oKAEC,sBACA,kCAQA,gNAEC,gBAIF,2FACC,MAGD,2FACC,QAKD,iFACC,iBA7MiB,QA8MjB,kBACA,MAxMU,KAyMV,gBACA,2BClNK,2FDoNJ,2BAGD,mGACC,iBAjNc,gBAkNd,sBAGD,iGACC,eACA,gBAGD,
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../projects/ng-select/themes/material.theme.scss","../../../projects/ng-select/themes/_mixins.scss"],"names":[],"mappings":"AAWA,WACC,sBAIE,0DACC,kCACA,4GACA,wBACA,2BAIA,iFACC,MAlBqB,gBAqBtB,uFACC,MAtBqB,gBA2BxB,0GAEC,MA7BuB,gBAmCvB,yDACC,aAzCkB,QA0ClB,iBAIA,oKAEC,aAhDiB,QAiDjB,iBAIF,sFACC,oFACA,MAvDkB,QA0DnB,8EACC,MA3DkB,QAkEpB,4GACC,gBAMD,qFACC,oFAIF,gCACC,MA9EuB,gBA+EvB,qBACA,kBAEA,uCACC,yCACA,WACA,SACA,OACA,QACA,kBACA,6DAGD,sDACC,eACA,gBAEA,6DACC,iCACA,kBACA,yBACA,oBACA,6DAGD,mEACC,aAzGqB,gBA0GrB,iBAGD,sEACC,gBACA,iBAzGW,KA0GX,UAGD,gEACC,mBAIF,oDACC,oBACA,kBACA,wCAEA,oEACC,kBACA,MA7HuB,gBA8HvB,wBACA,WACC,qICpIK,8EDwIL,yBAIF,8DACC,eAQA,yFACC,YAGD,yFACC,YAIF,mEACC,oBACA,WAGD,mEACC,oBACA,WAOD,oGACC,iBAtKgB,gBAuKhB,sBAIA,oKAEC,sBACA,kCAQA,gNAEC,gBAIF,2FACC,MAGD,2FACC,QAKD,iFACC,iBA7MiB,QA8MjB,kBACA,MAxMU,KAyMV,gBACA,2BClNK,2FDoNJ,2BAGD,mGACC,iBAjNc,gBAkNd,sBAGD,iGACC,eACA,gBAGD,kGACC,MA7N2B,oBA8N3B,kBCnOI,4GDqOH,iBACA,gBAGD,wGACC,MAvOwB,oBA4O3B,iFACC,oBAIF,gEACC,mBAEA,oFACC,iBACA,oBAGD,oKAEC,wCAMJ,6BACC,MAjQyB,gBAmQzB,mCACC,MAtQsB,gBAyQvB,mCACC,MA1QsB,gBA2QtB,aAIF,6BACC,WAEA,uCACC,oCACA,qCACA,qBACA,aACA,MArRwB,gBAyR1B,4BACC,QAIF,mBACC,WA3Rc,KA4Rd,OAEA,iCACC,6BACA,WACC,+FAKF,mCACC,UACA,wBACA,WACC,+FAGD,gBAGD,oCACC,wBACA,WACC,4FAKF,kCACC,uBACA,wBACA,WACC,+FAOA,gDACC,WApUW,KAuUZ,8CACC,2BAKH,uCACC,wCACA,eACA,gBACA,eAGD,uCACC,qCACA,eACA,gBACA,eAIA,yDACC,iBACA,eACA,gBACA,WACA,eACA,MAtWwB,gBAuWxB,gBAEA,0EACC,2BAGD,4EACC,eAGD,4EACC,WA/WgB,gBAgXhB,MAtXkB,QA0XpB,uDACC,gBACA,eACA,mBACA,gBACA,uBACA,eACA,qBACA,kBACA,MAlYsB,gBAmYtB,gBCrYO,iEDuYN,iBAGD,wEACC,2BACA,MA1YqB,gBA6YtB,0EACC,WAzYgB,gBA0YhB,MAhZkB,QAmZnB,0EACC,MA/YsB,gBAkZvB,uEACC,kBCzZM,iFD2ZL,mBACA,eAIF,qEACC,kBCjaM,+EDmaL,iBACA,gBAJF,qEAOC,cACA,gBACA,MAnasB","file":"material.theme.css"}
|