@syncfusion/ej2-angular-splitbuttons 20.2.38 → 20.2.43-ngcc
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/@syncfusion/ej2-angular-splitbuttons.es5.js +565 -0
- package/@syncfusion/ej2-angular-splitbuttons.es5.js.map +1 -0
- package/@syncfusion/ej2-angular-splitbuttons.js +516 -0
- package/@syncfusion/ej2-angular-splitbuttons.js.map +1 -0
- package/CHANGELOG.md +256 -0
- package/dist/ej2-angular-splitbuttons.umd.js +603 -0
- package/dist/ej2-angular-splitbuttons.umd.js.map +1 -0
- package/dist/ej2-angular-splitbuttons.umd.min.js +11 -0
- package/dist/ej2-angular-splitbuttons.umd.min.js.map +1 -0
- package/ej2-angular-splitbuttons.d.ts +7 -0
- package/ej2-angular-splitbuttons.metadata.json +1 -0
- package/package.json +15 -29
- package/postinstall/tagchange.js +18 -0
- package/schematics/collection.json +25 -0
- package/schematics/generators/dropdownbutton-default/index.d.ts +3 -0
- package/schematics/generators/dropdownbutton-default/index.js +8 -0
- package/schematics/generators/dropdownbutton-default/sample-details.d.ts +5 -0
- package/schematics/generators/dropdownbutton-default/sample-details.js +7 -0
- package/schematics/generators/dropdownbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +49 -0
- package/schematics/generators/dropdownbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +18 -0
- package/schematics/generators/dropdownbutton-default/schema.d.ts +3 -0
- package/schematics/generators/dropdownbutton-default/schema.js +2 -0
- package/schematics/generators/dropdownbutton-default/schema.json +125 -0
- package/schematics/generators/progressbutton-default/index.d.ts +3 -0
- package/schematics/generators/progressbutton-default/index.js +8 -0
- package/schematics/generators/progressbutton-default/sample-details.d.ts +5 -0
- package/schematics/generators/progressbutton-default/sample-details.js +7 -0
- package/schematics/generators/progressbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +47 -0
- package/schematics/generators/progressbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +53 -0
- package/schematics/generators/progressbutton-default/schema.d.ts +3 -0
- package/schematics/generators/progressbutton-default/schema.js +2 -0
- package/schematics/generators/progressbutton-default/schema.json +125 -0
- package/schematics/generators/splitbutton-default/index.d.ts +3 -0
- package/schematics/generators/splitbutton-default/index.js +8 -0
- package/schematics/generators/splitbutton-default/sample-details.d.ts +5 -0
- package/schematics/generators/splitbutton-default/sample-details.js +7 -0
- package/schematics/generators/splitbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +37 -0
- package/schematics/generators/splitbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +18 -0
- package/schematics/generators/splitbutton-default/schema.d.ts +3 -0
- package/schematics/generators/splitbutton-default/schema.js +2 -0
- package/schematics/generators/splitbutton-default/schema.json +125 -0
- package/schematics/ng-add/index.d.ts +3 -0
- package/schematics/ng-add/index.js +9 -0
- package/schematics/ng-add/schema.d.ts +13 -0
- package/schematics/ng-add/schema.js +2 -0
- package/schematics/ng-add/schema.json +34 -0
- package/schematics/tsconfig.json +25 -0
- package/schematics/utils/lib-details.d.ts +4 -0
- package/schematics/utils/lib-details.js +6 -0
- package/schematics/utils/lib-details.ts +2 -2
- package/src/drop-down-button/dropdownbutton-all.module.d.ts +0 -6
- package/src/drop-down-button/dropdownbutton.component.d.ts +0 -3
- package/src/drop-down-button/dropdownbutton.module.d.ts +0 -7
- package/src/drop-down-button/items.directive.d.ts +0 -5
- package/src/progress-button/progressbutton-all.module.d.ts +0 -6
- package/src/progress-button/progressbutton.component.d.ts +0 -3
- package/src/progress-button/progressbutton.module.d.ts +0 -6
- package/src/split-button/items.directive.d.ts +0 -5
- package/src/split-button/splitbutton-all.module.d.ts +0 -6
- package/src/split-button/splitbutton.component.d.ts +0 -3
- package/src/split-button/splitbutton.module.d.ts +0 -7
- package/styles/bootstrap-dark.css +5 -5
- package/styles/bootstrap4.css +1 -1
- package/styles/button-group/bootstrap-dark.scss +1 -4
- package/styles/button-group/bootstrap.scss +1 -4
- package/styles/button-group/bootstrap4.scss +1 -4
- package/styles/button-group/bootstrap5-dark.scss +1 -4
- package/styles/button-group/bootstrap5.scss +1 -4
- package/styles/button-group/fabric-dark.scss +1 -4
- package/styles/button-group/fabric.scss +1 -4
- package/styles/button-group/fluent-dark.css +15 -15
- package/styles/button-group/fluent-dark.scss +1 -4
- package/styles/button-group/fluent.scss +1 -4
- package/styles/button-group/highcontrast-light.scss +1 -4
- package/styles/button-group/highcontrast.scss +1 -4
- package/styles/button-group/material-dark.scss +1 -4
- package/styles/button-group/material.scss +1 -4
- package/styles/button-group/tailwind-dark.scss +1 -4
- package/styles/button-group/tailwind.scss +1 -4
- package/styles/drop-down-button/bootstrap-dark.scss +1 -6
- package/styles/drop-down-button/bootstrap.scss +1 -6
- package/styles/drop-down-button/bootstrap4.scss +1 -6
- package/styles/drop-down-button/bootstrap5-dark.scss +1 -6
- package/styles/drop-down-button/bootstrap5.scss +1 -6
- package/styles/drop-down-button/fabric-dark.scss +1 -6
- package/styles/drop-down-button/fabric.scss +1 -6
- package/styles/drop-down-button/fluent-dark.scss +1 -6
- package/styles/drop-down-button/fluent.scss +1 -6
- package/styles/drop-down-button/highcontrast-light.scss +1 -6
- package/styles/drop-down-button/highcontrast.scss +1 -6
- package/styles/drop-down-button/material-dark.scss +1 -6
- package/styles/drop-down-button/material.scss +1 -6
- package/styles/drop-down-button/tailwind-dark.scss +1 -6
- package/styles/drop-down-button/tailwind.scss +1 -6
- package/styles/fluent-dark.css +40 -40
- package/styles/highcontrast.css +2 -2
- package/styles/progress-button/bootstrap-dark.css +5 -5
- package/styles/progress-button/bootstrap-dark.scss +1 -5
- package/styles/progress-button/bootstrap.scss +1 -5
- package/styles/progress-button/bootstrap4.css +1 -1
- package/styles/progress-button/bootstrap4.scss +1 -5
- package/styles/progress-button/bootstrap5-dark.scss +1 -5
- package/styles/progress-button/bootstrap5.scss +1 -5
- package/styles/progress-button/fabric-dark.scss +1 -5
- package/styles/progress-button/fabric.scss +1 -5
- package/styles/progress-button/fluent-dark.css +25 -25
- package/styles/progress-button/fluent-dark.scss +1 -5
- package/styles/progress-button/fluent.scss +1 -5
- package/styles/progress-button/highcontrast-light.scss +1 -5
- package/styles/progress-button/highcontrast.css +2 -2
- package/styles/progress-button/highcontrast.scss +1 -5
- package/styles/progress-button/material-dark.scss +1 -5
- package/styles/progress-button/material.scss +1 -5
- package/styles/progress-button/tailwind-dark.scss +1 -5
- package/styles/progress-button/tailwind.scss +1 -5
- package/styles/split-button/bootstrap-dark.scss +1 -6
- package/styles/split-button/bootstrap.scss +1 -6
- package/styles/split-button/bootstrap4.scss +1 -6
- package/styles/split-button/bootstrap5-dark.scss +1 -6
- package/styles/split-button/bootstrap5.scss +1 -6
- package/styles/split-button/fabric-dark.scss +1 -6
- package/styles/split-button/fabric.scss +1 -6
- package/styles/split-button/fluent-dark.scss +1 -6
- package/styles/split-button/fluent.scss +1 -6
- package/styles/split-button/highcontrast-light.scss +1 -6
- package/styles/split-button/highcontrast.scss +1 -6
- package/styles/split-button/material-dark.scss +1 -6
- package/styles/split-button/material.scss +1 -6
- package/styles/split-button/tailwind-dark.scss +1 -6
- package/styles/split-button/tailwind.scss +1 -6
- package/esm2020/public_api.mjs +0 -3
- package/esm2020/src/drop-down-button/dropdownbutton-all.module.mjs +0 -23
- package/esm2020/src/drop-down-button/dropdownbutton.component.mjs +0 -64
- package/esm2020/src/drop-down-button/dropdownbutton.module.mjs +0 -34
- package/esm2020/src/drop-down-button/items.directive.mjs +0 -46
- package/esm2020/src/index.mjs +0 -13
- package/esm2020/src/progress-button/progressbutton-all.module.mjs +0 -23
- package/esm2020/src/progress-button/progressbutton.component.mjs +0 -59
- package/esm2020/src/progress-button/progressbutton.module.mjs +0 -25
- package/esm2020/src/split-button/items.directive.mjs +0 -46
- package/esm2020/src/split-button/splitbutton-all.module.mjs +0 -23
- package/esm2020/src/split-button/splitbutton.component.mjs +0 -64
- package/esm2020/src/split-button/splitbutton.module.mjs +0 -34
- package/esm2020/syncfusion-ej2-angular-splitbuttons.mjs +0 -5
- package/fesm2015/syncfusion-ej2-angular-splitbuttons.mjs +0 -405
- package/fesm2015/syncfusion-ej2-angular-splitbuttons.mjs.map +0 -1
- package/fesm2020/syncfusion-ej2-angular-splitbuttons.mjs +0 -405
- package/fesm2020/syncfusion-ej2-angular-splitbuttons.mjs.map +0 -1
- package/styles/button-group/_all.scss +0 -2
- package/styles/button-group/_bootstrap-dark-definition.scss +0 -32
- package/styles/button-group/_bootstrap-definition.scss +0 -30
- package/styles/button-group/_bootstrap4-definition.scss +0 -30
- package/styles/button-group/_bootstrap5-dark-definition.scss +0 -1
- package/styles/button-group/_bootstrap5-definition.scss +0 -31
- package/styles/button-group/_fabric-dark-definition.scss +0 -32
- package/styles/button-group/_fabric-definition.scss +0 -30
- package/styles/button-group/_fluent-dark-definition.scss +0 -1
- package/styles/button-group/_fluent-definition.scss +0 -31
- package/styles/button-group/_fusionnew-definition.scss +0 -31
- package/styles/button-group/_group-button-mixin.scss +0 -72
- package/styles/button-group/_highcontrast-definition.scss +0 -32
- package/styles/button-group/_highcontrast-light-definition.scss +0 -35
- package/styles/button-group/_layout.scss +0 -288
- package/styles/button-group/_material-dark-definition.scss +0 -32
- package/styles/button-group/_material-definition.scss +0 -30
- package/styles/button-group/_material3-definition.scss +0 -31
- package/styles/button-group/_tailwind-dark-definition.scss +0 -1
- package/styles/button-group/_tailwind-definition.scss +0 -31
- package/styles/button-group/_theme.scss +0 -386
- package/styles/drop-down-button/_all.scss +0 -2
- package/styles/drop-down-button/_bootstrap-dark-definition.scss +0 -50
- package/styles/drop-down-button/_bootstrap-definition.scss +0 -48
- package/styles/drop-down-button/_bootstrap4-definition.scss +0 -48
- package/styles/drop-down-button/_bootstrap5-dark-definition.scss +0 -1
- package/styles/drop-down-button/_bootstrap5-definition.scss +0 -51
- package/styles/drop-down-button/_fabric-dark-definition.scss +0 -50
- package/styles/drop-down-button/_fabric-definition.scss +0 -48
- package/styles/drop-down-button/_fluent-dark-definition.scss +0 -1
- package/styles/drop-down-button/_fluent-definition.scss +0 -52
- package/styles/drop-down-button/_fusionnew-definition.scss +0 -51
- package/styles/drop-down-button/_highcontrast-definition.scss +0 -48
- package/styles/drop-down-button/_highcontrast-light-definition.scss +0 -49
- package/styles/drop-down-button/_layout.scss +0 -217
- package/styles/drop-down-button/_material-dark-definition.scss +0 -50
- package/styles/drop-down-button/_material-definition.scss +0 -48
- package/styles/drop-down-button/_material3-definition.scss +0 -51
- package/styles/drop-down-button/_tailwind-dark-definition.scss +0 -1
- package/styles/drop-down-button/_tailwind-definition.scss +0 -50
- package/styles/drop-down-button/_theme.scss +0 -57
- package/styles/drop-down-button/icons/_bootstrap-dark.scss +0 -10
- package/styles/drop-down-button/icons/_bootstrap.scss +0 -10
- package/styles/drop-down-button/icons/_bootstrap4.scss +0 -10
- package/styles/drop-down-button/icons/_bootstrap5-dark.scss +0 -1
- package/styles/drop-down-button/icons/_bootstrap5.scss +0 -10
- package/styles/drop-down-button/icons/_fabric-dark.scss +0 -10
- package/styles/drop-down-button/icons/_fabric.scss +0 -10
- package/styles/drop-down-button/icons/_fluent-dark.scss +0 -1
- package/styles/drop-down-button/icons/_fluent.scss +0 -10
- package/styles/drop-down-button/icons/_fusionnew.scss +0 -10
- package/styles/drop-down-button/icons/_highcontrast-light.scss +0 -10
- package/styles/drop-down-button/icons/_highcontrast.scss +0 -10
- package/styles/drop-down-button/icons/_material-dark.scss +0 -10
- package/styles/drop-down-button/icons/_material.scss +0 -10
- package/styles/drop-down-button/icons/_material3.scss +0 -10
- package/styles/drop-down-button/icons/_tailwind-dark.scss +0 -10
- package/styles/drop-down-button/icons/_tailwind.scss +0 -10
- package/styles/progress-button/_all.scss +0 -2
- package/styles/progress-button/_bootstrap-dark-definition.scss +0 -26
- package/styles/progress-button/_bootstrap-definition.scss +0 -24
- package/styles/progress-button/_bootstrap4-definition.scss +0 -24
- package/styles/progress-button/_bootstrap5-dark-definition.scss +0 -1
- package/styles/progress-button/_bootstrap5-definition.scss +0 -21
- package/styles/progress-button/_fabric-dark-definition.scss +0 -26
- package/styles/progress-button/_fabric-definition.scss +0 -24
- package/styles/progress-button/_fluent-dark-definition.scss +0 -1
- package/styles/progress-button/_fluent-definition.scss +0 -21
- package/styles/progress-button/_fusionnew-definition.scss +0 -21
- package/styles/progress-button/_highcontrast-definition.scss +0 -24
- package/styles/progress-button/_highcontrast-light-definition.scss +0 -24
- package/styles/progress-button/_layout.scss +0 -395
- package/styles/progress-button/_material-dark-definition.scss +0 -26
- package/styles/progress-button/_material-definition.scss +0 -24
- package/styles/progress-button/_material3-definition.scss +0 -21
- package/styles/progress-button/_tailwind-dark-definition.scss +0 -1
- package/styles/progress-button/_tailwind-definition.scss +0 -21
- package/styles/progress-button/_theme.scss +0 -456
- package/styles/split-button/_all.scss +0 -2
- package/styles/split-button/_bootstrap-dark-definition.scss +0 -25
- package/styles/split-button/_bootstrap-definition.scss +0 -23
- package/styles/split-button/_bootstrap4-definition.scss +0 -25
- package/styles/split-button/_bootstrap5-dark-definition.scss +0 -1
- package/styles/split-button/_bootstrap5-definition.scss +0 -25
- package/styles/split-button/_fabric-dark-definition.scss +0 -25
- package/styles/split-button/_fabric-definition.scss +0 -23
- package/styles/split-button/_fluent-dark-definition.scss +0 -1
- package/styles/split-button/_fluent-definition.scss +0 -25
- package/styles/split-button/_fusionnew-definition.scss +0 -25
- package/styles/split-button/_highcontrast-definition.scss +0 -23
- package/styles/split-button/_highcontrast-light-definition.scss +0 -26
- package/styles/split-button/_layout.scss +0 -419
- package/styles/split-button/_material-dark-definition.scss +0 -25
- package/styles/split-button/_material-definition.scss +0 -23
- package/styles/split-button/_material3-definition.scss +0 -25
- package/styles/split-button/_tailwind-dark-definition.scss +0 -1
- package/styles/split-button/_tailwind-definition.scss +0 -25
- package/styles/split-button/_theme.scss +0 -136
- package/syncfusion-ej2-angular-splitbuttons.d.ts +0 -5
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/schema",
|
|
3
|
+
"$id": "ngAdd",
|
|
4
|
+
"title": "Add Essential JS 2 Angular packages",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"properties": {
|
|
7
|
+
"skipPackageJson": {
|
|
8
|
+
"type": "boolean",
|
|
9
|
+
"default": false,
|
|
10
|
+
"description": "Do not add add Essential JS 2 Angular packages dependencies to package.json (e.g., --skipPackageJson)"
|
|
11
|
+
},
|
|
12
|
+
"modules": {
|
|
13
|
+
"type": "string",
|
|
14
|
+
"default": "",
|
|
15
|
+
"description": "Add only specific Essential JS 2 modules to the app.module file (eg: --modules=slider, grid)"
|
|
16
|
+
},
|
|
17
|
+
"modulePath": {
|
|
18
|
+
"type": "string",
|
|
19
|
+
"default": "",
|
|
20
|
+
"description": "Used to specify the path of the module file where the EJ2 module needs to be imported"
|
|
21
|
+
},
|
|
22
|
+
"theme": {
|
|
23
|
+
"enum": [
|
|
24
|
+
"material",
|
|
25
|
+
"fabric",
|
|
26
|
+
"bootstrap",
|
|
27
|
+
"highcontrast"
|
|
28
|
+
],
|
|
29
|
+
"default": "material",
|
|
30
|
+
"description": "Used to change the theme that needs to be imported"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"required": []
|
|
34
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"lib": ["es2017", "dom"],
|
|
4
|
+
"module": "commonjs",
|
|
5
|
+
"moduleResolution": "node",
|
|
6
|
+
"noEmitOnError": false,
|
|
7
|
+
"skipDefaultLibCheck": true,
|
|
8
|
+
"skipLibCheck": true,
|
|
9
|
+
"sourceMap": true,
|
|
10
|
+
"target": "es6",
|
|
11
|
+
"declaration": true,
|
|
12
|
+
"types": [
|
|
13
|
+
"jasmine",
|
|
14
|
+
"node"
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
"exclude": [
|
|
18
|
+
"node_modules",
|
|
19
|
+
"src",
|
|
20
|
+
"src/**/*.ts",
|
|
21
|
+
"spec",
|
|
22
|
+
"spec/**/*.ts",
|
|
23
|
+
"@typings"
|
|
24
|
+
]
|
|
25
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.pkgName = '@syncfusion/ej2-angular-splitbuttons';
|
|
4
|
+
exports.pkgVer = '^20.2.43';
|
|
5
|
+
exports.moduleName = 'DropDownButtonModule, SplitButtonModule, ProgressButtonModule';
|
|
6
|
+
exports.themeVer = '~20.2.43';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export const pkgName = '@syncfusion/ej2-angular-splitbuttons';
|
|
2
|
-
export const pkgVer = '^20.
|
|
2
|
+
export const pkgVer = '^20.2.43';
|
|
3
3
|
export const moduleName = 'DropDownButtonModule, SplitButtonModule, ProgressButtonModule';
|
|
4
|
-
export const themeVer = '~20.
|
|
4
|
+
export const themeVer = '~20.2.43';
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "@angular/common";
|
|
3
|
-
import * as i2 from "./dropdownbutton.module";
|
|
4
1
|
/**
|
|
5
2
|
* NgModule definition for the DropDownButton component with providers.
|
|
6
3
|
*/
|
|
7
4
|
export declare class DropDownButtonAllModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DropDownButtonAllModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DropDownButtonAllModule, never, [typeof i1.CommonModule, typeof i2.DropDownButtonModule], [typeof i2.DropDownButtonModule]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<DropDownButtonAllModule>;
|
|
11
5
|
}
|
|
@@ -2,7 +2,6 @@ import { ElementRef, ViewContainerRef, Renderer2, Injector, QueryList } from '@a
|
|
|
2
2
|
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { DropDownButton } from '@syncfusion/ej2-splitbuttons';
|
|
4
4
|
import { DropDownButtonItemsDirective } from './items.directive';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
5
|
export declare const inputs: string[];
|
|
7
6
|
export declare const outputs: string[];
|
|
8
7
|
export declare const twoWays: string[];
|
|
@@ -35,6 +34,4 @@ export declare class DropDownButtonComponent extends DropDownButton implements I
|
|
|
35
34
|
ngAfterContentChecked(): void;
|
|
36
35
|
registerEvents: (eventList: string[]) => void;
|
|
37
36
|
addTwoWay: (propList: string[]) => void;
|
|
38
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DropDownButtonComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DropDownButtonComponent, "[ejs-dropdownbutton]", never, { "content": "content"; "createPopupOnClick": "createPopupOnClick"; "cssClass": "cssClass"; "disabled": "disabled"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "iconCss": "iconCss"; "iconPosition": "iconPosition"; "items": "items"; "locale": "locale"; "target": "target"; }, { "beforeClose": "beforeClose"; "beforeItemRender": "beforeItemRender"; "beforeOpen": "beforeOpen"; "close": "close"; "created": "created"; "open": "open"; "select": "select"; }, ["childItems"], ["*"]>;
|
|
40
37
|
}
|
|
@@ -1,12 +1,5 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./dropdownbutton.component";
|
|
3
|
-
import * as i2 from "./items.directive";
|
|
4
|
-
import * as i3 from "@angular/common";
|
|
5
1
|
/**
|
|
6
2
|
* NgModule definition for the DropDownButton component.
|
|
7
3
|
*/
|
|
8
4
|
export declare class DropDownButtonModule {
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DropDownButtonModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DropDownButtonModule, [typeof i1.DropDownButtonComponent, typeof i2.DropDownButtonItemDirective, typeof i2.DropDownButtonItemsDirective], [typeof i3.CommonModule], [typeof i1.DropDownButtonComponent, typeof i2.DropDownButtonItemDirective, typeof i2.DropDownButtonItemsDirective]>;
|
|
11
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<DropDownButtonModule>;
|
|
12
5
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class DropDownButtonItemDirective extends ComplexBase<DropDownButtonItemDirective> {
|
|
5
4
|
private viewContainerRef;
|
|
6
5
|
directivePropList: any;
|
|
@@ -36,8 +35,6 @@ export declare class DropDownButtonItemDirective extends ComplexBase<DropDownBut
|
|
|
36
35
|
*/
|
|
37
36
|
url: any;
|
|
38
37
|
constructor(viewContainerRef: ViewContainerRef);
|
|
39
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DropDownButtonItemDirective, never>;
|
|
40
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DropDownButtonItemDirective, "e-dropdownbuttonitems>e-dropdownbuttonitem", never, { "disabled": "disabled"; "iconCss": "iconCss"; "id": "id"; "separator": "separator"; "text": "text"; "url": "url"; }, {}, never>;
|
|
41
38
|
}
|
|
42
39
|
/**
|
|
43
40
|
* DropDownButtonItem Array Directive
|
|
@@ -45,6 +42,4 @@ export declare class DropDownButtonItemDirective extends ComplexBase<DropDownBut
|
|
|
45
42
|
*/
|
|
46
43
|
export declare class DropDownButtonItemsDirective extends ArrayBase<DropDownButtonItemsDirective> {
|
|
47
44
|
constructor();
|
|
48
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DropDownButtonItemsDirective, never>;
|
|
49
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DropDownButtonItemsDirective, "ejs-dropdownbutton>e-dropdownbuttonitems", never, {}, {}, ["children"]>;
|
|
50
45
|
}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "@angular/common";
|
|
3
|
-
import * as i2 from "./progressbutton.module";
|
|
4
1
|
/**
|
|
5
2
|
* NgModule definition for the ProgressButton component with providers.
|
|
6
3
|
*/
|
|
7
4
|
export declare class ProgressButtonAllModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressButtonAllModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ProgressButtonAllModule, never, [typeof i1.CommonModule, typeof i2.ProgressButtonModule], [typeof i2.ProgressButtonModule]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ProgressButtonAllModule>;
|
|
11
5
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
|
2
2
|
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { ProgressButton } from '@syncfusion/ej2-splitbuttons';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
4
|
export declare const inputs: string[];
|
|
6
5
|
export declare const outputs: string[];
|
|
7
6
|
export declare const twoWays: string[];
|
|
@@ -30,6 +29,4 @@ export declare class ProgressButtonComponent extends ProgressButton implements I
|
|
|
30
29
|
ngAfterContentChecked(): void;
|
|
31
30
|
registerEvents: (eventList: string[]) => void;
|
|
32
31
|
addTwoWay: (propList: string[]) => void;
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressButtonComponent, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressButtonComponent, "[ejs-progressbutton]", never, { "animationSettings": "animationSettings"; "content": "content"; "cssClass": "cssClass"; "disabled": "disabled"; "duration": "duration"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enableProgress": "enableProgress"; "iconCss": "iconCss"; "iconPosition": "iconPosition"; "isPrimary": "isPrimary"; "isToggle": "isToggle"; "spinSettings": "spinSettings"; }, { "begin": "begin"; "created": "created"; "end": "end"; "fail": "fail"; "progress": "progress"; }, never, ["*"]>;
|
|
35
32
|
}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./progressbutton.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
1
|
/**
|
|
5
2
|
* NgModule definition for the ProgressButton component.
|
|
6
3
|
*/
|
|
7
4
|
export declare class ProgressButtonModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressButtonModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ProgressButtonModule, [typeof i1.ProgressButtonComponent], [typeof i2.CommonModule], [typeof i1.ProgressButtonComponent]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ProgressButtonModule>;
|
|
11
5
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class SplitButtonItemDirective extends ComplexBase<SplitButtonItemDirective> {
|
|
5
4
|
private viewContainerRef;
|
|
6
5
|
directivePropList: any;
|
|
@@ -36,8 +35,6 @@ export declare class SplitButtonItemDirective extends ComplexBase<SplitButtonIte
|
|
|
36
35
|
*/
|
|
37
36
|
url: any;
|
|
38
37
|
constructor(viewContainerRef: ViewContainerRef);
|
|
39
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonItemDirective, never>;
|
|
40
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SplitButtonItemDirective, "e-splitbuttonitems>e-splitbuttonitem", never, { "disabled": "disabled"; "iconCss": "iconCss"; "id": "id"; "separator": "separator"; "text": "text"; "url": "url"; }, {}, never>;
|
|
41
38
|
}
|
|
42
39
|
/**
|
|
43
40
|
* SplitButtonItem Array Directive
|
|
@@ -45,6 +42,4 @@ export declare class SplitButtonItemDirective extends ComplexBase<SplitButtonIte
|
|
|
45
42
|
*/
|
|
46
43
|
export declare class SplitButtonItemsDirective extends ArrayBase<SplitButtonItemsDirective> {
|
|
47
44
|
constructor();
|
|
48
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonItemsDirective, never>;
|
|
49
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SplitButtonItemsDirective, "ejs-splitbutton>e-splitbuttonitems", never, {}, {}, ["children"]>;
|
|
50
45
|
}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "@angular/common";
|
|
3
|
-
import * as i2 from "./splitbutton.module";
|
|
4
1
|
/**
|
|
5
2
|
* NgModule definition for the SplitButton component with providers.
|
|
6
3
|
*/
|
|
7
4
|
export declare class SplitButtonAllModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonAllModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SplitButtonAllModule, never, [typeof i1.CommonModule, typeof i2.SplitButtonModule], [typeof i2.SplitButtonModule]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SplitButtonAllModule>;
|
|
11
5
|
}
|
|
@@ -2,7 +2,6 @@ import { ElementRef, ViewContainerRef, Renderer2, Injector, QueryList } from '@a
|
|
|
2
2
|
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { SplitButton } from '@syncfusion/ej2-splitbuttons';
|
|
4
4
|
import { SplitButtonItemsDirective } from './items.directive';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
5
|
export declare const inputs: string[];
|
|
7
6
|
export declare const outputs: string[];
|
|
8
7
|
export declare const twoWays: string[];
|
|
@@ -36,6 +35,4 @@ export declare class SplitButtonComponent extends SplitButton implements ICompon
|
|
|
36
35
|
ngAfterContentChecked(): void;
|
|
37
36
|
registerEvents: (eventList: string[]) => void;
|
|
38
37
|
addTwoWay: (propList: string[]) => void;
|
|
39
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SplitButtonComponent, "ejs-splitbutton", never, { "content": "content"; "createPopupOnClick": "createPopupOnClick"; "cssClass": "cssClass"; "disabled": "disabled"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "iconCss": "iconCss"; "iconPosition": "iconPosition"; "items": "items"; "locale": "locale"; "target": "target"; }, { "beforeClose": "beforeClose"; "beforeItemRender": "beforeItemRender"; "beforeOpen": "beforeOpen"; "click": "click"; "close": "close"; "created": "created"; "open": "open"; "select": "select"; }, ["childItems"], ["*"]>;
|
|
41
38
|
}
|
|
@@ -1,12 +1,5 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./splitbutton.component";
|
|
3
|
-
import * as i2 from "./items.directive";
|
|
4
|
-
import * as i3 from "@angular/common";
|
|
5
1
|
/**
|
|
6
2
|
* NgModule definition for the SplitButton component.
|
|
7
3
|
*/
|
|
8
4
|
export declare class SplitButtonModule {
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SplitButtonModule, [typeof i1.SplitButtonComponent, typeof i2.SplitButtonItemDirective, typeof i2.SplitButtonItemsDirective], [typeof i3.CommonModule], [typeof i1.SplitButtonComponent, typeof i2.SplitButtonItemDirective, typeof i2.SplitButtonItemsDirective]>;
|
|
11
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SplitButtonModule>;
|
|
12
5
|
}
|
|
@@ -1771,19 +1771,19 @@
|
|
|
1771
1771
|
}
|
|
1772
1772
|
|
|
1773
1773
|
*.e-flat.e-primary .e-progress {
|
|
1774
|
-
background-color: rgba(255,
|
|
1774
|
+
background-color: rgba(255, 255, 255, 0.2);
|
|
1775
1775
|
}
|
|
1776
1776
|
*.e-flat.e-success .e-progress {
|
|
1777
|
-
background-color: rgba(
|
|
1777
|
+
background-color: rgba(255, 255, 255, 0.2);
|
|
1778
1778
|
}
|
|
1779
1779
|
*.e-flat.e-info .e-progress {
|
|
1780
|
-
background-color: rgba(
|
|
1780
|
+
background-color: rgba(255, 255, 255, 0.2);
|
|
1781
1781
|
}
|
|
1782
1782
|
*.e-flat.e-warning .e-progress {
|
|
1783
|
-
background-color: rgba(
|
|
1783
|
+
background-color: rgba(255, 255, 255, 0.2);
|
|
1784
1784
|
}
|
|
1785
1785
|
*.e-flat.e-danger .e-progress {
|
|
1786
|
-
background-color: rgba(
|
|
1786
|
+
background-color: rgba(255, 255, 255, 0.2);
|
|
1787
1787
|
}
|
|
1788
1788
|
|
|
1789
1789
|
*.e-outline:not(:focus).e-primary .e-progress {
|
package/styles/bootstrap4.css
CHANGED
|
@@ -261,7 +261,7 @@
|
|
|
261
261
|
.e-css.e-btn-group input:focus + label.e-btn.e-primary {
|
|
262
262
|
background-color: #006cbf;
|
|
263
263
|
border-color: #0078d4;
|
|
264
|
-
color: #
|
|
264
|
+
color: #1b1a19;
|
|
265
265
|
outline: 1px solid;
|
|
266
266
|
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
267
267
|
box-shadow: none;
|
|
@@ -273,7 +273,7 @@
|
|
|
273
273
|
.e-css.e-btn-group input:focus + label.e-btn.e-success {
|
|
274
274
|
background-color: #0a5f0a;
|
|
275
275
|
border-color: #0b6a0b;
|
|
276
|
-
color: #
|
|
276
|
+
color: #1b1a19;
|
|
277
277
|
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
278
278
|
box-shadow: none;
|
|
279
279
|
outline-color: inherit;
|
|
@@ -284,7 +284,7 @@
|
|
|
284
284
|
.e-css.e-btn-group input:focus + label.e-btn.e-info {
|
|
285
285
|
background-color: #03767a;
|
|
286
286
|
border-color: #038387;
|
|
287
|
-
color: #
|
|
287
|
+
color: #1b1a19;
|
|
288
288
|
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
289
289
|
box-shadow: none;
|
|
290
290
|
outline-color: inherit;
|
|
@@ -295,7 +295,7 @@
|
|
|
295
295
|
.e-css.e-btn-group input:focus + label.e-btn.e-warning {
|
|
296
296
|
background-color: #cf6228;
|
|
297
297
|
border-color: #ca5010;
|
|
298
|
-
color: #
|
|
298
|
+
color: #1b1a19;
|
|
299
299
|
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
300
300
|
box-shadow: none;
|
|
301
301
|
outline-color: inherit;
|
|
@@ -306,7 +306,7 @@
|
|
|
306
306
|
.e-css.e-btn-group input:focus + label.e-btn.e-danger {
|
|
307
307
|
background-color: #bc2f32;
|
|
308
308
|
border-color: #d13438;
|
|
309
|
-
color: #
|
|
309
|
+
color: #1b1a19;
|
|
310
310
|
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
311
311
|
box-shadow: none;
|
|
312
312
|
outline-color: inherit;
|
|
@@ -379,7 +379,7 @@
|
|
|
379
379
|
.e-css.e-btn-group input:checked + label.e-btn.e-primary {
|
|
380
380
|
background-color: #0060aa;
|
|
381
381
|
border-color: #0060aa;
|
|
382
|
-
color: #
|
|
382
|
+
color: #1b1a19;
|
|
383
383
|
box-shadow: none;
|
|
384
384
|
}
|
|
385
385
|
.e-btn-group .e-btn:active.e-success,
|
|
@@ -390,7 +390,7 @@
|
|
|
390
390
|
.e-css.e-btn-group input:checked + label.e-btn.e-success {
|
|
391
391
|
background-color: #095509;
|
|
392
392
|
border-color: #095509;
|
|
393
|
-
color: #
|
|
393
|
+
color: #1b1a19;
|
|
394
394
|
box-shadow: none;
|
|
395
395
|
}
|
|
396
396
|
.e-btn-group .e-btn:active.e-info,
|
|
@@ -400,7 +400,7 @@
|
|
|
400
400
|
.e-css.e-btn-group input:active + label.e-btn.e-info,
|
|
401
401
|
.e-css.e-btn-group input:checked + label.e-btn.e-info {
|
|
402
402
|
background-color: #359c9f;
|
|
403
|
-
color: #
|
|
403
|
+
color: #1b1a19;
|
|
404
404
|
border-color: #359c9f;
|
|
405
405
|
box-shadow: none;
|
|
406
406
|
}
|
|
@@ -412,7 +412,7 @@
|
|
|
412
412
|
.e-css.e-btn-group input:checked + label.e-btn.e-warning {
|
|
413
413
|
background-color: #d57340;
|
|
414
414
|
border-color: #d57340;
|
|
415
|
-
color: #
|
|
415
|
+
color: #1b1a19;
|
|
416
416
|
box-shadow: none;
|
|
417
417
|
}
|
|
418
418
|
.e-btn-group .e-btn:active.e-danger,
|
|
@@ -423,7 +423,7 @@
|
|
|
423
423
|
.e-css.e-btn-group input:checked + label.e-btn.e-danger {
|
|
424
424
|
background-color: #a72a2d;
|
|
425
425
|
border-color: #a72a2d;
|
|
426
|
-
color: #
|
|
426
|
+
color: #1b1a19;
|
|
427
427
|
box-shadow: none;
|
|
428
428
|
}
|
|
429
429
|
.e-btn-group .e-btn:active.e-outline,
|
|
@@ -446,7 +446,7 @@
|
|
|
446
446
|
background-color: #0060aa;
|
|
447
447
|
border-color: #0078d4;
|
|
448
448
|
box-shadow: none;
|
|
449
|
-
color: #
|
|
449
|
+
color: #1b1a19;
|
|
450
450
|
}
|
|
451
451
|
.e-btn-group .e-btn:active.e-outline.e-success,
|
|
452
452
|
.e-btn-group input:active + label.e-btn.e-outline.e-success,
|
|
@@ -457,7 +457,7 @@
|
|
|
457
457
|
background-color: #095509;
|
|
458
458
|
border-color: #095509;
|
|
459
459
|
box-shadow: none;
|
|
460
|
-
color: #
|
|
460
|
+
color: #1b1a19;
|
|
461
461
|
}
|
|
462
462
|
.e-btn-group .e-btn:active.e-outline.e-info,
|
|
463
463
|
.e-btn-group input:active + label.e-btn.e-outline.e-info,
|
|
@@ -468,7 +468,7 @@
|
|
|
468
468
|
background-color: #359c9f;
|
|
469
469
|
border-color: #359c9f;
|
|
470
470
|
box-shadow: none;
|
|
471
|
-
color: #
|
|
471
|
+
color: #1b1a19;
|
|
472
472
|
}
|
|
473
473
|
.e-btn-group .e-btn:active.e-outline.e-warning,
|
|
474
474
|
.e-btn-group input:active + label.e-btn.e-outline.e-warning,
|
|
@@ -479,7 +479,7 @@
|
|
|
479
479
|
background-color: #d57340;
|
|
480
480
|
border-color: #d57340;
|
|
481
481
|
box-shadow: none;
|
|
482
|
-
color: #
|
|
482
|
+
color: #1b1a19;
|
|
483
483
|
}
|
|
484
484
|
.e-btn-group .e-btn:active.e-outline.e-danger,
|
|
485
485
|
.e-btn-group input:active + label.e-btn.e-outline.e-danger,
|
|
@@ -490,7 +490,7 @@
|
|
|
490
490
|
background-color: #a72a2d;
|
|
491
491
|
border-color: #a72a2d;
|
|
492
492
|
box-shadow: none;
|
|
493
|
-
color: #
|
|
493
|
+
color: #1b1a19;
|
|
494
494
|
}
|
|
495
495
|
.e-btn-group .e-btn:disabled,
|
|
496
496
|
.e-btn-group input:disabled + label.e-btn,
|
|
@@ -1,4 +1 @@
|
|
|
1
|
-
@import 'ej2-
|
|
2
|
-
@import 'ej2-buttons/styles/button/highcontrast-light-definition.scss';
|
|
3
|
-
@import 'highcontrast-light-definition.scss';
|
|
4
|
-
@import 'all.scss';
|
|
1
|
+
@import 'ej2-splitbuttons/styles/button-group/highcontrast-light.scss';
|
|
@@ -1,6 +1 @@
|
|
|
1
|
-
@import 'ej2-
|
|
2
|
-
@import 'ej2-buttons/styles/button/bootstrap-dark-definition.scss';
|
|
3
|
-
@import 'ej2-popups/styles/popup/bootstrap-dark-definition.scss';
|
|
4
|
-
@import 'bootstrap-dark-definition.scss';
|
|
5
|
-
@import 'icons/bootstrap-dark.scss';
|
|
6
|
-
@import 'all.scss';
|
|
1
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/bootstrap-dark.scss';
|
|
@@ -1,6 +1 @@
|
|
|
1
|
-
@import 'ej2-
|
|
2
|
-
@import 'ej2-buttons/styles/button/bootstrap-definition.scss';
|
|
3
|
-
@import 'ej2-popups/styles/popup/bootstrap-definition.scss';
|
|
4
|
-
@import 'bootstrap-definition.scss';
|
|
5
|
-
@import 'icons/bootstrap.scss';
|
|
6
|
-
@import 'all.scss';
|
|
1
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/bootstrap.scss';
|
|
@@ -1,6 +1 @@
|
|
|
1
|
-
@import 'ej2-
|
|
2
|
-
@import 'ej2-buttons/styles/button/bootstrap4-definition.scss';
|
|
3
|
-
@import 'ej2-popups/styles/popup/bootstrap4-definition.scss';
|
|
4
|
-
@import 'bootstrap4-definition.scss';
|
|
5
|
-
@import 'icons/bootstrap4.scss';
|
|
6
|
-
@import 'all.scss';
|
|
1
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/bootstrap4.scss';
|
|
@@ -1,6 +1 @@
|
|
|
1
|
-
@import 'ej2-
|
|
2
|
-
@import 'ej2-buttons/styles/button/bootstrap5-dark-definition.scss';
|
|
3
|
-
@import 'ej2-popups/styles/popup/bootstrap5-dark-definition.scss';
|
|
4
|
-
@import 'bootstrap5-dark-definition.scss';
|
|
5
|
-
@import 'icons/bootstrap5-dark.scss';
|
|
6
|
-
@import 'all.scss';
|
|
1
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/bootstrap5-dark.scss';
|
|
@@ -1,6 +1 @@
|
|
|
1
|
-
@import 'ej2-
|
|
2
|
-
@import 'ej2-buttons/styles/button/bootstrap5-definition.scss';
|
|
3
|
-
@import 'ej2-popups/styles/popup/bootstrap5-definition.scss';
|
|
4
|
-
@import 'bootstrap5-definition.scss';
|
|
5
|
-
@import 'icons/bootstrap5.scss';
|
|
6
|
-
@import 'all.scss';
|
|
1
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/bootstrap5.scss';
|
|
@@ -1,6 +1 @@
|
|
|
1
|
-
@import 'ej2-
|
|
2
|
-
@import 'ej2-buttons/styles/button/fabric-dark-definition.scss';
|
|
3
|
-
@import 'ej2-popups/styles/popup/fabric-dark-definition.scss';
|
|
4
|
-
@import 'fabric-dark-definition.scss';
|
|
5
|
-
@import 'icons/fabric-dark.scss';
|
|
6
|
-
@import 'all.scss';
|
|
1
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/fabric-dark.scss';
|
|
@@ -1,6 +1 @@
|
|
|
1
|
-
@import 'ej2-
|
|
2
|
-
@import 'ej2-buttons/styles/button/fabric-definition.scss';
|
|
3
|
-
@import 'ej2-popups/styles/popup/fabric-definition.scss';
|
|
4
|
-
@import 'fabric-definition.scss';
|
|
5
|
-
@import 'icons/fabric.scss';
|
|
6
|
-
@import 'all.scss';
|
|
1
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/fabric.scss';
|
|
@@ -1,6 +1 @@
|
|
|
1
|
-
@import 'ej2-
|
|
2
|
-
@import 'ej2-buttons/styles/button/fluent-dark-definition.scss';
|
|
3
|
-
@import 'ej2-popups/styles/popup/fluent-dark-definition.scss';
|
|
4
|
-
@import 'fluent-dark-definition.scss';
|
|
5
|
-
@import 'icons/fluent-dark.scss';
|
|
6
|
-
@import 'all.scss';
|
|
1
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/fluent-dark.scss';
|
|
@@ -1,6 +1 @@
|
|
|
1
|
-
@import 'ej2-
|
|
2
|
-
@import 'ej2-buttons/styles/button/fluent-definition.scss';
|
|
3
|
-
@import 'ej2-popups/styles/popup/fluent-definition.scss';
|
|
4
|
-
@import 'fluent-definition.scss';
|
|
5
|
-
@import 'icons/fluent.scss';
|
|
6
|
-
@import 'all.scss';
|
|
1
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/fluent.scss';
|
|
@@ -1,6 +1 @@
|
|
|
1
|
-
@import 'ej2-
|
|
2
|
-
@import 'ej2-buttons/styles/button/highcontrast-light-definition.scss';
|
|
3
|
-
@import 'ej2-popups/styles/popup/highcontrast-light-definition.scss';
|
|
4
|
-
@import 'highcontrast-light-definition.scss';
|
|
5
|
-
@import 'icons/highcontrast-light.scss';
|
|
6
|
-
@import 'all.scss';
|
|
1
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/highcontrast-light.scss';
|