@alauda/ui 6.0.2-beta.18 → 6.0.2-beta.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/alauda-ui.metadata.json +1 -1
  2. package/bundles/alauda-ui.umd.js +16 -17
  3. package/bundles/alauda-ui.umd.js.map +1 -1
  4. package/bundles/alauda-ui.umd.min.js +1 -1
  5. package/bundles/alauda-ui.umd.min.js.map +1 -1
  6. package/esm2015/autocomplete/autocomplete.component.js +1 -1
  7. package/esm2015/autocomplete/autocomplete.component.scss.ngstyle.js +1 -1
  8. package/esm2015/autocomplete/suggestion/suggestion.component.js +1 -1
  9. package/esm2015/autocomplete/suggestion/suggestion.component.scss.ngstyle.js +1 -1
  10. package/esm2015/autocomplete/suggestion-group/suggestion-group.component.js +1 -1
  11. package/esm2015/autocomplete/suggestion-group/suggestion-group.component.scss.ngstyle.js +1 -1
  12. package/esm2015/checkbox/checkbox.component.js +1 -1
  13. package/esm2015/checkbox/checkbox.component.scss.ngstyle.js +1 -1
  14. package/esm2015/dropdown/dropdown-button/dropdown-button.component.js +1 -1
  15. package/esm2015/dropdown/dropdown-button/dropdown-button.component.scss.ngstyle.js +1 -1
  16. package/esm2015/input/search/search.component.js +1 -1
  17. package/esm2015/input/search/search.component.scss.ngstyle.js +1 -1
  18. package/esm2015/radio/radio-button/radio-button.component.js +1 -1
  19. package/esm2015/radio/radio-button/radio-button.component.scss.ngstyle.js +1 -1
  20. package/esm2015/radio/radio.component.js +1 -1
  21. package/esm2015/radio/radio.component.scss.ngstyle.js +1 -1
  22. package/esm2015/select/multi-select/multi-select.component.js +1 -1
  23. package/esm2015/select/multi-select/multi-select.component.scss.ngstyle.js +1 -1
  24. package/esm2015/select/option/option.component.js +1 -1
  25. package/esm2015/select/option/option.component.scss.ngstyle.js +1 -1
  26. package/esm2015/select/option-group/option-group.component.js +5 -7
  27. package/esm2015/select/option-group/option-group.component.ngfactory.js +3 -3
  28. package/esm2015/select/option-group/option-group.component.ngsummary.json +1 -1
  29. package/esm2015/select/option-group/option-group.component.scss.ngstyle.js +1 -1
  30. package/esm2015/select/select.component.js +1 -1
  31. package/esm2015/select/select.component.scss.ngstyle.js +1 -1
  32. package/esm2015/select/select.module.ngfactory.js +1 -1
  33. package/esm2015/tree-select/tree-node/tree-node.component.js +1 -1
  34. package/esm2015/tree-select/tree-node/tree-node.component.scss.ngstyle.js +1 -1
  35. package/esm2015/tree-select/tree-select.component.js +1 -1
  36. package/esm2015/tree-select/tree-select.component.scss.ngstyle.js +1 -1
  37. package/fesm2015/alauda-ui.js +16 -17
  38. package/fesm2015/alauda-ui.js.map +1 -1
  39. package/package.json +1 -1
  40. package/select/option-group/option-group.component.d.ts +0 -2
  41. package/theme/_var.scss +1 -2
  42. package/theme/style.css +0 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alauda/ui",
3
- "version": "6.0.2-beta.18",
3
+ "version": "6.0.2-beta.19",
4
4
  "description": "Angular UI components by Alauda Frontend Team.",
5
5
  "repository": "git+https://github.com/alauda/alauda-ui.git",
6
6
  "author": "Alauda Frontend",
@@ -1,10 +1,8 @@
1
1
  import { AfterContentInit, QueryList } from '@angular/core';
2
2
  import { Observable } from 'rxjs';
3
- import { OptionGroupTitleDirective } from '../helper-directives';
4
3
  import { OptionComponent } from '../option/option.component';
5
4
  export declare class OptionGroupComponent<T> implements AfterContentInit {
6
5
  options: QueryList<OptionComponent<T>>;
7
- groupTitle: OptionGroupTitleDirective;
8
6
  hasVisibleOption$: Observable<boolean>;
9
7
  ngAfterContentInit(): void;
10
8
  }
package/theme/_var.scss CHANGED
@@ -193,8 +193,7 @@ $input-mini-height: $height-mini;
193
193
  $input-mini-font-size: $font-size-small;
194
194
 
195
195
  // Select
196
- $select-width: 100%;
197
- $select-options-padding: $input-padding-hoz;
196
+ $select-options-padding: 8px;
198
197
  $select-options-max-height: $input-medium-height * 8;
199
198
 
200
199
  // Tag
package/theme/style.css CHANGED
@@ -239,7 +239,6 @@ html[aui-color-mode=dark] {
239
239
  --aui-form-item-width-l: 732px;
240
240
  --aui-form-item-width-m: 436px;
241
241
  --aui-form-item-width-s: 140px;
242
- --aui-border-m: 1px;
243
242
  --aui-table-margin: 12px;
244
243
  --aui-table-cell-padding-lr: 20px;
245
244
  --aui-table-cell-padding-tb-s: 11px;
@@ -249,8 +248,6 @@ html[aui-color-mode=dark] {
249
248
  --aui-table-header-cell-padding-tb: 11px;
250
249
  --aui-table-header-height: 44px;
251
250
  --aui-table-border-width: 1px;
252
- --aui-select-width: 100%;
253
- --aui-select-options-padding: 8px;
254
251
  --aui-color-primary: var(--aui-color-blue);
255
252
  --aui-color-p-0: var(--aui-color-b-0);
256
253
  --aui-color-p-1: var(--aui-color-b-1);