@theseam/ui-common 0.4.11 → 0.4.12-beta.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/breadcrumbs/breadcrumbs/breadcrumbs.component.scss +1 -1
- package/datatable/datatable/datatable.component.d.ts +10 -1
- package/datatable/models/action-item-column-position.d.ts +13 -0
- package/datatable/services/columns-manager.service.d.ts +7 -0
- package/datatable/utils/create-action-menu-column.d.ts +1 -1
- package/esm2020/breadcrumbs/breadcrumbs/breadcrumbs.component.mjs +2 -2
- package/esm2020/carousel/carousel.component.mjs +2 -1
- package/esm2020/datatable/datatable/datatable.component.mjs +20 -4
- package/esm2020/datatable/datatable-action-menu/datatable-action-menu.component.mjs +2 -2
- package/esm2020/datatable/datatable-column-preferences-button/datatable-column-preferences-button.component.mjs +1 -1
- package/esm2020/datatable/datatable-export-button/datatable-export-button.component.mjs +1 -1
- package/esm2020/datatable/models/action-item-column-position.mjs +5 -0
- package/esm2020/datatable/services/columns-manager.service.mjs +27 -2
- package/esm2020/datatable/utils/create-action-menu-column.mjs +4 -3
- package/esm2020/datatable-dynamic/datatable-dynamic-action-menu/datatable-dynamic-action-menu.component.mjs +1 -1
- package/esm2020/datatable-dynamic/datatable-dynamic.component.mjs +1 -1
- package/esm2020/framework/base-layout/base-layout.component.mjs +14 -4
- package/esm2020/framework/base-layout/base-layout.module.mjs +6 -1
- package/esm2020/framework/base-layout/directives/base-layout-nav-toggle.directive.mjs +21 -5
- package/esm2020/framework/base-layout/directives/base-layout-side-bar-header.directive.mjs +16 -0
- package/esm2020/framework/base-layout/index.mjs +2 -1
- package/esm2020/framework/nav/horizontal-nav/horizontal-nav.component.mjs +55 -0
- package/esm2020/framework/nav/index.mjs +6 -0
- package/esm2020/framework/nav/nav-item/nav-item.component.mjs +227 -0
- package/esm2020/framework/nav/nav-utils.mjs +107 -0
- package/esm2020/framework/nav/nav.models.mjs +2 -0
- package/esm2020/framework/nav/nav.module.mjs +67 -0
- package/esm2020/framework/nav/nav.service.mjs +204 -0
- package/esm2020/framework/public-api.mjs +2 -1
- package/esm2020/framework/schema-form-controls/schema-form-submit-split/schema-form-submit-split.component.mjs +1 -1
- package/esm2020/framework/side-nav/side-nav-item/side-nav-item.component.mjs +28 -67
- package/esm2020/framework/side-nav/side-nav-toggle/side-nav-toggle.component.mjs +12 -5
- package/esm2020/framework/side-nav/side-nav.component.mjs +116 -38
- package/esm2020/framework/side-nav/side-nav.models.mjs +1 -1
- package/esm2020/framework/side-nav/side-nav.module.mjs +9 -39
- package/esm2020/framework/side-nav/side-nav.service.mjs +1 -1
- package/esm2020/framework/top-bar/index.mjs +3 -1
- package/esm2020/framework/top-bar/top-bar-compact-menu-btn-detail.directive.mjs +16 -0
- package/esm2020/framework/top-bar/top-bar-item.directive.mjs +10 -4
- package/esm2020/framework/top-bar/top-bar-menu-button/top-bar-menu-button.component.mjs +6 -4
- package/esm2020/framework/top-bar/top-bar-nav-toggle-btn-detail.directive.mjs +16 -0
- package/esm2020/framework/top-bar/top-bar.component.mjs +55 -11
- package/esm2020/framework/top-bar/top-bar.module.mjs +15 -5
- package/esm2020/layout/layout.service.mjs +12 -2
- package/esm2020/menu/menu-toggle.directive.mjs +7 -2
- package/esm2020/table-cell-types/table-cell-type-string/table-cell-type-string.component.mjs +4 -2
- package/fesm2015/theseam-ui-common-breadcrumbs.mjs +2 -2
- package/fesm2015/theseam-ui-common-breadcrumbs.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-carousel.mjs +1 -0
- package/fesm2015/theseam-ui-common-carousel.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-datatable-dynamic.mjs +2 -2
- package/fesm2015/theseam-ui-common-datatable-dynamic.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-datatable.mjs +56 -10
- package/fesm2015/theseam-ui-common-datatable.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-framework.mjs +905 -156
- package/fesm2015/theseam-ui-common-framework.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-layout.mjs +11 -2
- package/fesm2015/theseam-ui-common-layout.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-menu.mjs +6 -1
- package/fesm2015/theseam-ui-common-menu.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-table-cell-types.mjs +3 -1
- package/fesm2015/theseam-ui-common-table-cell-types.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-breadcrumbs.mjs +2 -2
- package/fesm2020/theseam-ui-common-breadcrumbs.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-carousel.mjs +1 -0
- package/fesm2020/theseam-ui-common-carousel.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-datatable-dynamic.mjs +2 -2
- package/fesm2020/theseam-ui-common-datatable-dynamic.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-datatable.mjs +56 -10
- package/fesm2020/theseam-ui-common-datatable.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-framework.mjs +907 -156
- package/fesm2020/theseam-ui-common-framework.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-layout.mjs +11 -2
- package/fesm2020/theseam-ui-common-layout.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-menu.mjs +6 -1
- package/fesm2020/theseam-ui-common-menu.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-table-cell-types.mjs +3 -1
- package/fesm2020/theseam-ui-common-table-cell-types.mjs.map +1 -1
- package/framework/base-layout/base-layout.component.d.ts +4 -2
- package/framework/base-layout/base-layout.component.scss +18 -10
- package/framework/base-layout/base-layout.module.d.ts +11 -10
- package/framework/base-layout/directives/base-layout-nav-toggle.directive.d.ts +8 -3
- package/framework/base-layout/directives/base-layout-side-bar-header.directive.d.ts +9 -0
- package/framework/base-layout/index.d.ts +1 -0
- package/framework/base-layout/styles/_variables.scss +21 -0
- package/framework/nav/_nav-theme.scss +4 -0
- package/framework/nav/horizontal-nav/horizontal-nav.component.d.ts +25 -0
- package/framework/nav/horizontal-nav/horizontal-nav.component.scss +50 -0
- package/framework/nav/index.d.ts +5 -0
- package/framework/nav/nav-item/nav-item.component.d.ts +74 -0
- package/framework/nav/nav-item/nav-item.component.scss +203 -0
- package/framework/nav/nav-utils.d.ts +20 -0
- package/framework/nav/nav.models.d.ts +77 -0
- package/framework/nav/nav.module.d.ts +17 -0
- package/framework/nav/nav.service.d.ts +27 -0
- package/framework/nav/styles/_themes/light/_variables.scss +56 -0
- package/framework/nav/styles/_themes/primary/_variables.scss +56 -0
- package/framework/nav/styles/_utilities.scss +3 -0
- package/framework/nav/styles/_variables.scss +2 -0
- package/framework/public-api.d.ts +1 -0
- package/framework/side-nav/side-nav-item/side-nav-item.component.d.ts +7 -14
- package/framework/side-nav/side-nav-item/side-nav-item.component.scss +7 -5
- package/framework/side-nav/side-nav-toggle/side-nav-toggle.component.d.ts +5 -3
- package/framework/side-nav/side-nav-toggle/side-nav-toggle.component.scss +3 -6
- package/framework/side-nav/side-nav.component.d.ts +13 -1
- package/framework/side-nav/side-nav.component.scss +0 -1
- package/framework/side-nav/side-nav.models.d.ts +7 -1
- package/framework/side-nav/side-nav.module.d.ts +1 -9
- package/framework/side-nav/styles/_themes/light/_variables.scss +24 -14
- package/framework/side-nav/styles/_themes/primary/_variables.scss +8 -0
- package/framework/top-bar/index.d.ts +2 -0
- package/framework/top-bar/top-bar-compact-menu-btn-detail.directive.d.ts +8 -0
- package/framework/top-bar/top-bar-item.directive.d.ts +4 -1
- package/framework/top-bar/top-bar-menu-button/top-bar-menu-button.component.d.ts +5 -2
- package/framework/top-bar/top-bar-nav-toggle-btn-detail.directive.d.ts +8 -0
- package/framework/top-bar/top-bar.component.d.ts +25 -3
- package/framework/top-bar/top-bar.component.scss +7 -2
- package/framework/top-bar/top-bar.module.d.ts +10 -8
- package/layout/layout.service.d.ts +9 -1
- package/menu/menu-toggle.directive.d.ts +2 -1
- package/package.json +2 -2
- package/styles/vendor/ngx-datatable/_ngx-datatable.scss +57 -14
- package/styles/vendor/ngx-datatable/_themes/bootstrap/_variables.scss +33 -5
|
@@ -5,15 +5,17 @@ import * as i3 from "./top-bar-menu-button/top-bar-menu-button.component";
|
|
|
5
5
|
import * as i4 from "./top-bar-menu.directive";
|
|
6
6
|
import * as i5 from "./top-bar-item.directive";
|
|
7
7
|
import * as i6 from "./top-bar-menu-btn-detail.directive";
|
|
8
|
-
import * as i7 from "
|
|
9
|
-
import * as i8 from "
|
|
10
|
-
import * as i9 from "@
|
|
11
|
-
import * as i10 from "@theseam/ui-common/
|
|
12
|
-
import * as i11 from "@theseam/ui-common/
|
|
13
|
-
import * as i12 from "
|
|
14
|
-
import * as i13 from "@
|
|
8
|
+
import * as i7 from "./top-bar-compact-menu-btn-detail.directive";
|
|
9
|
+
import * as i8 from "./top-bar-nav-toggle-btn-detail.directive";
|
|
10
|
+
import * as i9 from "@angular/common";
|
|
11
|
+
import * as i10 from "@theseam/ui-common/layout";
|
|
12
|
+
import * as i11 from "@theseam/ui-common/buttons";
|
|
13
|
+
import * as i12 from "@theseam/ui-common/icon";
|
|
14
|
+
import * as i13 from "@theseam/ui-common/menu";
|
|
15
|
+
import * as i14 from "../base-layout/base-layout.module";
|
|
16
|
+
import * as i15 from "@angular/router";
|
|
15
17
|
export declare class TheSeamTopBarModule {
|
|
16
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<TheSeamTopBarModule, never>;
|
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TheSeamTopBarModule, [typeof i1.TheSeamTopBarComponent, typeof i2.TopBarTitleComponent, typeof i3.TopBarMenuButtonComponent, typeof i4.TopBarMenuDirective, typeof i5.TopBarItemDirective, typeof i6.TopBarMenuBtnDetailDirective], [typeof
|
|
19
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TheSeamTopBarModule, [typeof i1.TheSeamTopBarComponent, typeof i2.TopBarTitleComponent, typeof i3.TopBarMenuButtonComponent, typeof i4.TopBarMenuDirective, typeof i5.TopBarItemDirective, typeof i6.TopBarMenuBtnDetailDirective, typeof i7.TopBarCompactMenuBtnDetailDirective, typeof i8.TopBarNavToggleBtnDetailDirective], [typeof i9.CommonModule, typeof i10.TheSeamLayoutModule, typeof i11.TheSeamButtonsModule, typeof i12.TheSeamIconModule, typeof i13.TheSeamMenuModule, typeof i14.TheSeamBaseLayoutModule, typeof i15.RouterModule], [typeof i1.TheSeamTopBarComponent, typeof i3.TopBarMenuButtonComponent, typeof i4.TopBarMenuDirective, typeof i13.TheSeamMenuModule, typeof i5.TopBarItemDirective, typeof i6.TopBarMenuBtnDetailDirective, typeof i7.TopBarCompactMenuBtnDetailDirective, typeof i8.TopBarNavToggleBtnDetailDirective]>;
|
|
18
20
|
static ɵinj: i0.ɵɵInjectorDeclaration<TheSeamTopBarModule>;
|
|
19
21
|
}
|
|
@@ -5,11 +5,19 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export declare class TheSeamLayoutService {
|
|
6
6
|
private _media;
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Observes if app is a mobile-like size.
|
|
9
|
+
* Default mobile breakpoint is <= 599px,
|
|
10
|
+
* use setMobileBreakpoint() to change size.
|
|
9
11
|
*/
|
|
10
12
|
isMobile$: Observable<boolean>;
|
|
13
|
+
private _mobileBreakpoint;
|
|
14
|
+
mobileBreakpoint$: Observable<MediaQueryAliases>;
|
|
11
15
|
constructor(_media: MediaObserver);
|
|
12
16
|
observe(alias: MediaQueryAliases): Observable<boolean>;
|
|
17
|
+
/**
|
|
18
|
+
* Update breakpoint observed by isMobile$
|
|
19
|
+
*/
|
|
20
|
+
setMobileBreakpoint(alias: MediaQueryAliases): void;
|
|
13
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<TheSeamLayoutService, never>;
|
|
14
22
|
static ɵprov: i0.ɵɵInjectableDeclaration<TheSeamLayoutService>;
|
|
15
23
|
}
|
|
@@ -30,6 +30,7 @@ export declare class MenuToggleDirective implements OnDestroy, AfterContentInit
|
|
|
30
30
|
set positions(val: ConnectionPositionPair[]);
|
|
31
31
|
get positions(): ConnectionPositionPair[];
|
|
32
32
|
private _positions;
|
|
33
|
+
readonly menuToggle: EventEmitter<boolean>;
|
|
33
34
|
seamMenuTogglePositionsOffsetY: number;
|
|
34
35
|
/** Event emitted when the associated menu is opened. */
|
|
35
36
|
readonly menuOpened: EventEmitter<void>;
|
|
@@ -78,5 +79,5 @@ export declare class MenuToggleDirective implements OnDestroy, AfterContentInit
|
|
|
78
79
|
/** Handles the cases where the user hovers over the trigger. */
|
|
79
80
|
private _handleHover;
|
|
80
81
|
static ɵfac: i0.ɵɵFactoryDeclaration<MenuToggleDirective, [null, null, null, null, { optional: true; }, { optional: true; self: true; }, { optional: true; }]>;
|
|
81
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MenuToggleDirective, "[seamMenuToggle]", ["seamMenuToggle"], { "menu": "seamMenuToggle"; "positions": "positions"; "seamMenuTogglePositionsOffsetY": "seamMenuTogglePositionsOffsetY"; }, { "menuOpened": "menuOpened"; "menuClosed": "menuClosed"; }, never, never, false, never>;
|
|
82
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MenuToggleDirective, "[seamMenuToggle]", ["seamMenuToggle"], { "menu": "seamMenuToggle"; "positions": "positions"; "seamMenuTogglePositionsOffsetY": "seamMenuTogglePositionsOffsetY"; }, { "menuToggle": "menuToggle"; "menuOpened": "menuOpened"; "menuClosed": "menuClosed"; }, never, never, false, never>;
|
|
82
83
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theseam/ui-common",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.12-beta.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": "^15.0.0",
|
|
6
6
|
"@angular/common": "^15.0.0",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@fortawesome/angular-fontawesome": "~0.9.0",
|
|
20
20
|
"@marklb/file-type": "~10.6.5",
|
|
21
|
-
"@marklb/ngx-datatable": "18.0.
|
|
21
|
+
"@marklb/ngx-datatable": "~18.0.5",
|
|
22
22
|
"@marklb/ngx-loading": "^10.0.0",
|
|
23
23
|
"@ng-select/ng-select": "~6.1.0",
|
|
24
24
|
"@ng-bootstrap/ng-bootstrap": "~9.1.1",
|
|
@@ -142,17 +142,19 @@
|
|
|
142
142
|
.datatable-header,
|
|
143
143
|
.datatable-body {
|
|
144
144
|
.datatable-row-left {
|
|
145
|
-
background-color: $datatable-background;
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
145
|
+
background-color: $datatable-left-background;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.datatable-row-even .datatable-row-left {
|
|
149
|
+
background-color: $datatable-left-row-even-background;
|
|
149
150
|
}
|
|
150
151
|
|
|
151
152
|
.datatable-row-right {
|
|
152
|
-
background-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
153
|
+
background-color: $datatable-right-background;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.datatable-row-even .datatable-row-right {
|
|
157
|
+
background-color: $datatable-right-row-even-background;
|
|
156
158
|
}
|
|
157
159
|
}
|
|
158
160
|
|
|
@@ -268,6 +270,9 @@
|
|
|
268
270
|
color: $datatable-body-cell-color;
|
|
269
271
|
font-size: $datatable-body-cell-font-size;
|
|
270
272
|
font-weight: $datatable-body-cell-font-weight;
|
|
273
|
+
.datatable-body-cell-label {
|
|
274
|
+
height: 100%;
|
|
275
|
+
}
|
|
271
276
|
}
|
|
272
277
|
.datatable-body-group-cell {
|
|
273
278
|
vertical-align: top;
|
|
@@ -476,13 +481,51 @@
|
|
|
476
481
|
// }
|
|
477
482
|
|
|
478
483
|
.datatable-action-button {
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
484
|
+
flex: 0 0 auto;
|
|
485
|
+
|
|
486
|
+
@if $datatable-action-button-outline {
|
|
487
|
+
@include button-outline-variant(
|
|
488
|
+
$color: $datatable-action-button-outline-color,
|
|
489
|
+
$color-hover: $datatable-action-button-outline-color-hover,
|
|
490
|
+
$active-background: $datatable-action-button-outline-active-background,
|
|
491
|
+
$active-border: $datatable-action-button-outline-active-border
|
|
492
|
+
);
|
|
493
|
+
|
|
494
|
+
// allow variable override for outline button bg
|
|
495
|
+
background: $datatable-action-button-outline-background;
|
|
496
|
+
|
|
497
|
+
} @else {
|
|
498
|
+
@include button-variant(
|
|
499
|
+
$background: $datatable-action-button-background,
|
|
500
|
+
$border: $datatable-action-button-border,
|
|
501
|
+
$hover-background: $datatable-action-button-hover-background,
|
|
502
|
+
$hover-border: $datatable-action-button-hover-border,
|
|
503
|
+
$active-background: $datatable-action-button-active-background,
|
|
504
|
+
$active-border: $datatable-action-button-active-border
|
|
505
|
+
);
|
|
506
|
+
|
|
507
|
+
// allow variable override for solid button color
|
|
508
|
+
color: $datatable-action-button-color;
|
|
509
|
+
|
|
510
|
+
&:hover {
|
|
511
|
+
color: $datatable-action-button-hover-color;
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
&:not(:disabled):not(.disabled):active {
|
|
515
|
+
color: $datatable-action-button-active-color;
|
|
516
|
+
}
|
|
485
517
|
}
|
|
518
|
+
|
|
519
|
+
box-shadow: $datatable-action-button-box-shadow;
|
|
520
|
+
font-size: $datatable-action-button-font-size;
|
|
521
|
+
line-height: $datatable-action-button-line-height;
|
|
522
|
+
|
|
523
|
+
width: $datatable-action-button-width;
|
|
524
|
+
height: $datatable-action-button-height;
|
|
525
|
+
|
|
526
|
+
padding: $datatable-action-button-padding;
|
|
527
|
+
border-radius: $datatable-action-button-border-radius;
|
|
528
|
+
text-align: $datatable-action-button-text-align;
|
|
486
529
|
}
|
|
487
530
|
|
|
488
531
|
/**
|
|
@@ -10,8 +10,12 @@ $datatable-color: $body-color !default;
|
|
|
10
10
|
|
|
11
11
|
// common datatable colors
|
|
12
12
|
$datatable-background: $white !default;
|
|
13
|
-
$datatable-box-shadow: none !default;
|
|
14
13
|
$datatable-row-even-background: rgba(0, 0, 0, 0.05) !default;
|
|
14
|
+
$datatable-left-background: transparent !default;
|
|
15
|
+
$datatable-left-row-even-background: $datatable-left-background !default;
|
|
16
|
+
$datatable-right-background: transparent !default;
|
|
17
|
+
$datatable-right-row-even-background: $datatable-right-background !default;
|
|
18
|
+
$datatable-box-shadow: none !default;
|
|
15
19
|
|
|
16
20
|
// default row and cell background colors
|
|
17
21
|
$datatable-default-background: $white !default;
|
|
@@ -167,8 +171,32 @@ $datatable-summary-row-background: #ddd !default;
|
|
|
167
171
|
$datatable-summary-row-background-hover: #ddd !default;
|
|
168
172
|
$datatable-summary-row-font-weight: bold !default;
|
|
169
173
|
|
|
170
|
-
|
|
171
|
-
$datatable-action-button-background:
|
|
174
|
+
// Action Menu Button Styles
|
|
175
|
+
$datatable-action-button-background: $primary !default;
|
|
176
|
+
$datatable-action-button-border: $datatable-action-button-background !default;
|
|
177
|
+
$datatable-action-button-hover-background: darken($datatable-action-button-background, 7.5%) !default;
|
|
178
|
+
$datatable-action-button-hover-border: darken($datatable-action-button-border, 10%) !default;
|
|
179
|
+
$datatable-action-button-active-background: darken($datatable-action-button-background, 10%) !default;
|
|
180
|
+
$datatable-action-button-active-border: darken($datatable-action-button-border, 12.5%) !default;
|
|
181
|
+
|
|
182
|
+
$datatable-action-button-color: color-yiq($datatable-action-button-background) !default;
|
|
183
|
+
$datatable-action-button-hover-color: color-yiq($datatable-action-button-hover-background) !default;
|
|
184
|
+
$datatable-action-button-active-color: color-yiq($datatable-action-button-active-background) !default;
|
|
185
|
+
|
|
186
|
+
$datatable-action-button-outline: false !default;
|
|
187
|
+
$datatable-action-button-outline-color: $datatable-action-button-background !default;
|
|
188
|
+
$datatable-action-button-outline-color-hover: color-yiq($datatable-action-button-outline-color) !default;
|
|
189
|
+
$datatable-action-button-outline-active-background: $datatable-action-button-outline-color !default;
|
|
190
|
+
$datatable-action-button-outline-active-border: $datatable-action-button-outline-color !default;
|
|
191
|
+
|
|
192
|
+
$datatable-action-button-outline-background: transparent !default;
|
|
193
|
+
|
|
172
194
|
$datatable-action-button-box-shadow: none !default;
|
|
173
|
-
$datatable-action-button-
|
|
174
|
-
$datatable-action-button-
|
|
195
|
+
$datatable-action-button-font-size: 20px !default;
|
|
196
|
+
$datatable-action-button-line-height: 1 !default;
|
|
197
|
+
$datatable-action-button-size: 30px !default;
|
|
198
|
+
$datatable-action-button-width: $datatable-action-button-size !default;
|
|
199
|
+
$datatable-action-button-height: $datatable-action-button-size !default;
|
|
200
|
+
$datatable-action-button-padding: 0 !default;
|
|
201
|
+
$datatable-action-button-border-radius: 100% !default;
|
|
202
|
+
$datatable-action-button-text-align: center !default;
|