@dev-tcloud/tcloud-ui 0.1.15 → 0.1.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13,11 +13,16 @@ export declare class TabMenuService {
13
13
  private _loading;
14
14
  private loadingSubject;
15
15
  loadingState$: import("rxjs").Observable<boolean>;
16
+ private _full;
17
+ private fullSubject;
18
+ fullState$: import("rxjs").Observable<boolean>;
16
19
  constructor(_route: ActivatedRoute, _router: Router);
17
20
  setTabScroll(scroll: boolean): void;
18
21
  getTabScroll(): boolean | undefined;
19
22
  setTabLoading(loading: boolean): void;
20
23
  getTabLoading(): boolean | undefined;
24
+ setTabfull(full: boolean): void;
25
+ getTabFull(): boolean | undefined;
21
26
  setTabState(tab: string, registerInUrl?: boolean | undefined): void;
22
27
  getTabState(): string | undefined;
23
28
  setTabDisabled(id: string, disabled: boolean): void;
@@ -10,11 +10,14 @@ export declare class TCloudUiTabMenuComponent implements OnInit, OnDestroy {
10
10
  private _active;
11
11
  set active(active: string);
12
12
  get active(): string;
13
+ private _full;
14
+ set full(full: boolean);
15
+ get full(): boolean;
13
16
  onChange: EventEmitter<string>;
14
17
  private subscription;
15
18
  constructor(tabMenuService: TabMenuService);
16
19
  ngOnInit(): void;
17
20
  ngOnDestroy(): void;
18
21
  static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiTabMenuComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiTabMenuComponent, "tcloud-ui-tab-menu", never, { "registerInUrl": "registerInUrl"; "loading": "loading"; "active": "active"; }, { "onChange": "onChange"; }, never, ["*"], false>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiTabMenuComponent, "tcloud-ui-tab-menu", never, { "registerInUrl": "registerInUrl"; "loading": "loading"; "active": "active"; "full": "full"; }, { "onChange": "onChange"; }, never, ["*"], false>;
20
23
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dev-tcloud/tcloud-ui",
3
- "version": "0.1.15",
3
+ "version": "0.1.17",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.1.0",
6
6
  "@angular/core": "^14.1.0"
@@ -0,0 +1,11 @@
1
+ .tcloud-ui-tab-block-full{
2
+ tcloud-ui-tab-head{
3
+ tcloud-ui-tab-title, tcloud-ui-tab-subtitle {
4
+ flex-grow: 1;
5
+
6
+ button {
7
+ min-width: 100% !important;
8
+ }
9
+ }
10
+ }
11
+ }
@@ -6,4 +6,4 @@
6
6
  @import 'custom/validation.scss';
7
7
  @import 'custom/el-copy.scss';
8
8
  @import 'custom/ui-datepicker.scss';
9
-
9
+ @import 'custom/tab-menu.scss';
@@ -0,0 +1,38 @@
1
+ /*
2
+ <div class="tc-alert tc-alert-primary">
3
+ A simple primary alert—check it out!
4
+ </div>
5
+
6
+ */
7
+
8
+ .tc-alert{
9
+ padding: 16px;
10
+ border-radius: 13px;
11
+ font-size: 14px;
12
+ }
13
+
14
+ .tc-alert-success{
15
+ border: 2px solid #4597a4;
16
+ color: #4597a4;
17
+ background-color: lighten(#4597a4, 40%);
18
+ }
19
+
20
+ .tc-alert-danger{
21
+ border: 2px solid #ee4d4d;
22
+ color: #ee4d4d;
23
+ background-color: lighten(#ee4d4d, 33%);
24
+ }
25
+
26
+ .tc-alert-warning{
27
+ border: 2px solid #ffa632;
28
+ color: #ffa632;
29
+ background-color: lighten(#ffa632, 33%);
30
+ }
31
+
32
+ .tc-alert-info{
33
+ border: 2px solid #456da4;
34
+ color: #456da4;
35
+ background-color: lighten(#456da4, 40%);
36
+ }
37
+
38
+