raise-common-lib-new 0.0.3
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/README.md +24 -0
- package/esm2022/lib/common-grid/index.component.mjs +439 -0
- package/esm2022/lib/constant/index.mjs +11 -0
- package/esm2022/lib/float-box/index.component.mjs +217 -0
- package/esm2022/lib/form/checkbox-group/index.component.mjs +57 -0
- package/esm2022/lib/form/radio-group/index.component.mjs +42 -0
- package/esm2022/lib/form/switch-input/index.component.mjs +42 -0
- package/esm2022/lib/form/tag-input/index.component.mjs +62 -0
- package/esm2022/lib/layout/common-list/index.component.mjs +43 -0
- package/esm2022/lib/layout/main-container/index.component.mjs +18 -0
- package/esm2022/lib/layout/rs-aside/index.component.mjs +31 -0
- package/esm2022/lib/layout/rs-footer/index.component.mjs +16 -0
- package/esm2022/lib/layout/rs-header/index.component.mjs +47 -0
- package/esm2022/lib/raise-common-lib.module.mjs +385 -0
- package/esm2022/lib/service/common-function.service.mjs +17 -0
- package/esm2022/lib/service/icon-loader.service.mjs +20 -0
- package/esm2022/public-api.mjs +18 -0
- package/esm2022/raise-common-lib-new.mjs +5 -0
- package/fesm2022/raise-common-lib-new.mjs +1391 -0
- package/fesm2022/raise-common-lib-new.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/common-grid/index.component.d.ts +119 -0
- package/lib/constant/index.d.ts +54 -0
- package/lib/float-box/index.component.d.ts +33 -0
- package/lib/form/checkbox-group/index.component.d.ts +22 -0
- package/lib/form/radio-group/index.component.d.ts +19 -0
- package/lib/form/switch-input/index.component.d.ts +15 -0
- package/lib/form/tag-input/index.component.d.ts +19 -0
- package/lib/layout/common-list/index.component.d.ts +15 -0
- package/lib/layout/main-container/index.component.d.ts +8 -0
- package/lib/layout/rs-aside/index.component.d.ts +14 -0
- package/lib/layout/rs-footer/index.component.d.ts +8 -0
- package/lib/layout/rs-header/index.component.d.ts +21 -0
- package/lib/raise-common-lib.module.d.ts +35 -0
- package/lib/service/common-function.service.d.ts +7 -0
- package/lib/service/icon-loader.service.d.ts +9 -0
- package/package.json +25 -0
- package/public-api.d.ts +14 -0
- package/src/assets/img/arrow_right.svg +4 -0
- package/src/assets/img/calendar.svg +6 -0
- package/src/assets/img/calendar_arrow_left.svg +3 -0
- package/src/assets/img/calendar_arrow_right.svg +3 -0
- package/src/assets/img/checked-vector.svg +3 -0
- package/src/assets/img/delete.svg +14 -0
- package/src/assets/img/dropdown-arrow-disabled.svg +3 -0
- package/src/assets/img/dropdown-arrow.svg +3 -0
- package/src/assets/img/export.svg +5 -0
- package/src/assets/img/notification-close.svg +4 -0
- package/src/assets/img/notification-collapse.svg +14 -0
- package/src/assets/img/notification-status-error.svg +5 -0
- package/src/assets/img/notification-status-loading.svg +9 -0
- package/src/assets/img/notification-status-success.svg +4 -0
- package/src/assets/img/notification-status-warning.svg +5 -0
- package/src/assets/img/plus.svg +4 -0
- package/src/assets/img/raise_logo_main.svg +13 -0
- package/src/assets/img/search.svg +4 -0
- package/src/assets/img/tag-remove.svg +4 -0
- package/src/assets/img/toggle-menu-icon.svg +3 -0
- package/src/assets/style/reset/button.scss +119 -0
- package/src/assets/style/reset/dropdown.scss +514 -0
- package/src/assets/style/reset/input.scss +32 -0
- package/src/assets/style/style.scss +29 -0
- package/src/assets/style/syncfusion.min.css +1 -0
- package/src/assets/style/variables.scss +58 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./common-grid/index.component";
|
|
3
|
+
import * as i2 from "./float-box/index.component";
|
|
4
|
+
import * as i3 from "./layout/common-list/index.component";
|
|
5
|
+
import * as i4 from "./layout/rs-header/index.component";
|
|
6
|
+
import * as i5 from "./layout/rs-footer/index.component";
|
|
7
|
+
import * as i6 from "./layout/rs-aside/index.component";
|
|
8
|
+
import * as i7 from "./layout/main-container/index.component";
|
|
9
|
+
import * as i8 from "./form/tag-input/index.component";
|
|
10
|
+
import * as i9 from "./form/radio-group/index.component";
|
|
11
|
+
import * as i10 from "./form/checkbox-group/index.component";
|
|
12
|
+
import * as i11 from "./form/switch-input/index.component";
|
|
13
|
+
import * as i12 from "@angular/common";
|
|
14
|
+
import * as i13 from "@angular/common/http";
|
|
15
|
+
import * as i14 from "@angular/forms";
|
|
16
|
+
import * as i15 from "@syncfusion/ej2-angular-grids";
|
|
17
|
+
import * as i16 from "@syncfusion/ej2-angular-buttons";
|
|
18
|
+
import * as i17 from "@syncfusion/ej2-angular-diagrams";
|
|
19
|
+
import * as i18 from "@syncfusion/ej2-angular-popups";
|
|
20
|
+
import * as i19 from "@syncfusion/ej2-angular-calendars";
|
|
21
|
+
import * as i20 from "@syncfusion/ej2-angular-inputs";
|
|
22
|
+
import * as i21 from "@syncfusion/ej2-angular-dropdowns";
|
|
23
|
+
import * as i22 from "@syncfusion/ej2-angular-pivotview";
|
|
24
|
+
import * as i23 from "@syncfusion/ej2-angular-charts";
|
|
25
|
+
import * as i24 from "@syncfusion/ej2-angular-layouts";
|
|
26
|
+
import * as i25 from "@syncfusion/ej2-angular-navigations";
|
|
27
|
+
import * as i26 from "@syncfusion/ej2-angular-pdfviewer";
|
|
28
|
+
import * as i27 from "@syncfusion/ej2-angular-splitbuttons";
|
|
29
|
+
import * as i28 from "@syncfusion/ej2-angular-richtexteditor";
|
|
30
|
+
import * as i29 from "angular-svg-icon";
|
|
31
|
+
export declare class RaiseCommonLibModule {
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RaiseCommonLibModule, never>;
|
|
33
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RaiseCommonLibModule, [typeof i1.CommonGridComponent, typeof i2.FloatBoxComponent, typeof i3.CommonListComponent, typeof i4.RSHeaderComponent, typeof i5.RSFooterComponent, typeof i6.RSAsideComponent, typeof i7.MainContainerComponent, typeof i8.TagInputComponent, typeof i9.RadioGroupComponent, typeof i10.CheckboxGroupComponent, typeof i11.SwitchInputComponent], [typeof i12.CommonModule, typeof i13.HttpClientModule, typeof i14.ReactiveFormsModule, typeof i14.FormsModule, typeof i15.GridModule, typeof i15.PagerModule, typeof i15.GridAllModule, typeof i16.SwitchModule, typeof i16.CheckBoxModule, typeof i16.RadioButtonModule, typeof i16.ButtonModule, typeof i17.DiagramModule, typeof i18.TooltipModule, typeof i18.DialogModule, typeof i19.DatePickerModule, typeof i19.DateRangePickerModule, typeof i19.DateTimePickerModule, typeof i20.TextBoxModule, typeof i20.ColorPickerModule, typeof i20.UploaderModule, typeof i20.NumericTextBoxModule, typeof i21.DropDownListModule, typeof i21.DropDownTreeModule, typeof i21.MultiSelectAllModule, typeof i21.AutoCompleteModule, typeof i21.ListBoxModule, typeof i22.PivotViewAllModule, typeof i22.PivotFieldListAllModule, typeof i23.ChartAllModule, typeof i23.AccumulationChartAllModule, typeof i23.RangeNavigatorAllModule, typeof i23.AccumulationChartModule, typeof i24.DashboardLayoutModule, typeof i25.CarouselAllModule, typeof i25.ToolbarModule, typeof i26.PdfViewerModule, typeof i27.DropDownButtonModule, typeof i28.RichTextEditorAllModule, typeof i29.AngularSvgIconModule], [typeof i12.CommonModule, typeof i13.HttpClientModule, typeof i14.ReactiveFormsModule, typeof i14.FormsModule, typeof i15.GridModule, typeof i15.PagerModule, typeof i15.GridAllModule, typeof i16.SwitchModule, typeof i16.CheckBoxModule, typeof i16.RadioButtonModule, typeof i16.ButtonModule, typeof i17.DiagramModule, typeof i18.TooltipModule, typeof i18.DialogModule, typeof i19.DatePickerModule, typeof i19.DateRangePickerModule, typeof i19.DateTimePickerModule, typeof i20.TextBoxModule, typeof i20.ColorPickerModule, typeof i20.UploaderModule, typeof i20.NumericTextBoxModule, typeof i21.DropDownListModule, typeof i21.DropDownTreeModule, typeof i21.MultiSelectAllModule, typeof i21.AutoCompleteModule, typeof i21.ListBoxModule, typeof i22.PivotViewAllModule, typeof i22.PivotFieldListAllModule, typeof i23.ChartAllModule, typeof i23.AccumulationChartAllModule, typeof i23.RangeNavigatorAllModule, typeof i23.AccumulationChartModule, typeof i24.DashboardLayoutModule, typeof i25.CarouselAllModule, typeof i25.ToolbarModule, typeof i26.PdfViewerModule, typeof i27.DropDownButtonModule, typeof i28.RichTextEditorAllModule, typeof i1.CommonGridComponent, typeof i2.FloatBoxComponent, typeof i3.CommonListComponent, typeof i4.RSHeaderComponent, typeof i5.RSFooterComponent, typeof i6.RSAsideComponent, typeof i7.MainContainerComponent, typeof i8.TagInputComponent, typeof i9.RadioGroupComponent, typeof i10.CheckboxGroupComponent, typeof i11.SwitchInputComponent]>;
|
|
34
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<RaiseCommonLibModule>;
|
|
35
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { SvgIconRegistryService } from "angular-svg-icon";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class IconLoaderService {
|
|
4
|
+
private iconReg;
|
|
5
|
+
constructor(iconReg: SvgIconRegistryService);
|
|
6
|
+
registerIcons(list: any): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconLoaderService, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<IconLoaderService>;
|
|
9
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "raise-common-lib-new",
|
|
3
|
+
"version": "0.0.3",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^16.0.0",
|
|
6
|
+
"@angular/core": "^16.0.0"
|
|
7
|
+
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"tslib": "^2.3.0"
|
|
10
|
+
},
|
|
11
|
+
"sideEffects": false,
|
|
12
|
+
"module": "fesm2022/raise-common-lib-new.mjs",
|
|
13
|
+
"typings": "index.d.ts",
|
|
14
|
+
"exports": {
|
|
15
|
+
"./package.json": {
|
|
16
|
+
"default": "./package.json"
|
|
17
|
+
},
|
|
18
|
+
".": {
|
|
19
|
+
"types": "./index.d.ts",
|
|
20
|
+
"esm2022": "./esm2022/raise-common-lib-new.mjs",
|
|
21
|
+
"esm": "./esm2022/raise-common-lib-new.mjs",
|
|
22
|
+
"default": "./fesm2022/raise-common-lib-new.mjs"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
package/public-api.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export * from './lib/common-grid/index.component';
|
|
2
|
+
export * from './lib/float-box/index.component';
|
|
3
|
+
export * from './lib/layout/common-list/index.component';
|
|
4
|
+
export * from './lib/layout/main-container/index.component';
|
|
5
|
+
export * from './lib/layout/rs-header/index.component';
|
|
6
|
+
export * from './lib/layout/rs-footer/index.component';
|
|
7
|
+
export * from './lib/layout/rs-aside/index.component';
|
|
8
|
+
export * from './lib/form/tag-input/index.component';
|
|
9
|
+
export * from './lib/form/radio-group/index.component';
|
|
10
|
+
export * from './lib/form/checkbox-group/index.component';
|
|
11
|
+
export * from './lib/form/switch-input/index.component';
|
|
12
|
+
export * from './lib/service/common-function.service';
|
|
13
|
+
export * from './lib/service/icon-loader.service';
|
|
14
|
+
export * from './lib/raise-common-lib.module';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M9.24264 3.75736L12.5 8L9.24264 12.2426" stroke="#6C7C90" stroke-linecap="round"/>
|
|
3
|
+
<path d="M3 7.5C2.72386 7.5 2.5 7.72386 2.5 8C2.5 8.27614 2.72386 8.5 3 8.5V7.5ZM12 7.5L3 7.5V8.5L12 8.5V7.5Z" fill="#6C7C90"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M2 6C2 4.61929 3.11929 3.5 4.5 3.5H11.5C12.8807 3.5 14 4.61929 14 6V13C14 13.8284 13.3284 14.5 12.5 14.5H3.5C2.67157 14.5 2 13.8284 2 13V6Z" stroke="#1F7BFF"/>
|
|
3
|
+
<line x1="1.5" y1="6.5" x2="13.5" y2="6.5" stroke="#1F7BFF"/>
|
|
4
|
+
<line x1="5" y1="2" x2="5" y2="5" stroke="#1F7BFF"/>
|
|
5
|
+
<line x1="11" y1="2" x2="11" y2="5" stroke="#1F7BFF"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_3359_4806)">
|
|
3
|
+
<line x1="1" y1="3.5" x2="15" y2="3.5" stroke="#6B6B6B"/>
|
|
4
|
+
<path d="M3 4V12C3 13.1046 3.89543 14 5 14H11C12.1046 14 13 13.1046 13 12V4" stroke="#6B6B6B"/>
|
|
5
|
+
<line x1="6" y1="1.5" x2="10" y2="1.5" stroke="#6B6B6B"/>
|
|
6
|
+
<line x1="6.5" y1="7" x2="6.5" y2="11" stroke="#6B6B6B"/>
|
|
7
|
+
<line x1="9.5" y1="7" x2="9.5" y2="11" stroke="#6B6B6B"/>
|
|
8
|
+
</g>
|
|
9
|
+
<defs>
|
|
10
|
+
<clipPath id="clip0_3359_4806">
|
|
11
|
+
<rect width="16" height="16" fill="white"/>
|
|
12
|
+
</clipPath>
|
|
13
|
+
</defs>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M11 11L11 12C11 13.1046 10.1046 14 9 14L8.75 14L6.5 14L4 14C2.89543 14 2 13.1046 2 12L2 4C2 2.89543 2.89543 2 4 2L7.96864 2C8.26056 2 8.53791 2.12756 8.72789 2.34921L10.7593 4.71913C10.9146 4.90038 11 5.13121 11 5.36992L11 8" stroke="#6B6B6B"/>
|
|
3
|
+
<path d="M13.0995 11.286L15.199 9.14307L13.0995 7.00012" stroke="#6B6B6B" stroke-linecap="round"/>
|
|
4
|
+
<line x1="0.5" y1="-0.5" x2="7.5" y2="-0.5" transform="matrix(-1 0 0 1 15 9.68018)" stroke="#6B6B6B" stroke-linecap="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M3.50021 12.9999L12.5001 4.00007" stroke="#6C7C90" stroke-linecap="round"/>
|
|
3
|
+
<path d="M12.4999 12.9999L3.50007 4.00007" stroke="#6C7C90" stroke-linecap="round"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g id="Group 1000004344">
|
|
3
|
+
<g id="Group 1000004342">
|
|
4
|
+
<g id="Group 1000004345">
|
|
5
|
+
<path id="Rectangle 1232" d="M8.99512 2.28217V7.28217H13.9951" stroke="#6C7C90"/>
|
|
6
|
+
<line id="Line 364" y1="-0.5" x2="7" y2="-0.5" transform="matrix(0.707107 -0.707107 -0.707107 -0.707107 8.4707 7.04959)" stroke="#6C7C90"/>
|
|
7
|
+
</g>
|
|
8
|
+
</g>
|
|
9
|
+
<g id="Group 1000004343">
|
|
10
|
+
<path id="Rectangle 1233" d="M7.00684 14.1721L7.00684 9.17212L2.00684 9.17212" stroke="#6C7C90"/>
|
|
11
|
+
<line id="Line 365" y1="-0.5" x2="7" y2="-0.5" transform="matrix(-0.707107 0.707107 0.707107 0.707107 7.53223 9.4043)" stroke="#6C7C90"/>
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle cx="12" cy="12" r="8.5" fill="#FF6060" stroke="#FF5C5C"/>
|
|
3
|
+
<path d="M15.0251 9.23828L9.36829 14.8951" stroke="#F8FAFB" stroke-width="2" stroke-linecap="round"/>
|
|
4
|
+
<path d="M9.36816 9.23828L15.025 14.8951" stroke="#F8FAFB" stroke-width="2" stroke-linecap="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g id="Status">
|
|
3
|
+
<circle id="Ellipse 80" cx="12" cy="12" r="8.5" fill="#44566C" stroke="#44566C"/>
|
|
4
|
+
<g id="refresh">
|
|
5
|
+
<path id="Ellipse 127" d="M13.2251 7.48555C12.6352 7.32748 12.0199 7.28716 11.4144 7.36687C10.8089 7.44659 10.225 7.64479 9.69608 7.95016C9.16716 8.25553 8.70357 8.66209 8.33177 9.14663C7.95998 9.63116 7.68726 10.1842 7.52919 10.7741C7.37112 11.364 7.33079 11.9793 7.41051 12.5848C7.49022 13.1904 7.68843 13.7742 7.9938 14.3032L5.80539 13.2113" stroke="#F8FAFB" stroke-width="1.5" stroke-linecap="round"/>
|
|
6
|
+
<path id="Ellipse 128" d="M10.8178 16.4697C11.4078 16.6278 12.0231 16.6681 12.6286 16.5884C13.2341 16.5087 13.818 16.3105 14.3469 16.0051C14.8758 15.6998 15.3394 15.2932 15.7112 14.8087C16.083 14.3241 16.3557 13.7711 16.5138 13.1812C16.6719 12.5913 16.7122 11.976 16.6325 11.3705C16.5528 10.7649 16.3546 10.1811 16.0492 9.65214L18.3237 10.8932" stroke="#F8FAFB" stroke-width="1.5" stroke-linecap="round"/>
|
|
7
|
+
</g>
|
|
8
|
+
</g>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle cx="12" cy="12" r="8.5" fill="#FF9618" stroke="#FF9618"/>
|
|
3
|
+
<rect x="11" y="6.9375" width="2" height="7.3125" rx="1" fill="white"/>
|
|
4
|
+
<rect x="11" y="15.375" width="2" height="2" rx="1" fill="white"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg width="87" height="36" viewBox="0 0 87 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#elv0fbenwa)">
|
|
3
|
+
<path d="m36.32 24.029-1.68-4.246h-8.37l-1.587 4.246H19l9.071-21.63h5.07l8.983 21.628H36.32v.002zM30.516 8.173l-2.749 7.424h5.439l-2.69-7.424zM43.927 24.029V5.555h5.255v18.474h-5.255zM65.065 8.02c-.448-.569-1.035-1.023-1.757-1.36-.722-.335-1.421-.504-2.093-.504-.348 0-.697.03-1.054.091a2.724 2.724 0 0 0-.962.352 2.37 2.37 0 0 0-.717.672c-.194.274-.29.626-.29 1.053 0 .366.075.672.228.917.153.244.377.459.672.642.295.182.647.352 1.053.505.407.153.866.31 1.376.473.733.244 1.497.514 2.292.808a8.522 8.522 0 0 1 2.168 1.177 6.22 6.22 0 0 1 1.62 1.817c.428.722.642 1.624.642 2.703 0 1.243-.228 2.317-.687 3.222a6.438 6.438 0 0 1-1.849 2.246 7.909 7.909 0 0 1-2.657 1.314c-.999.285-2.027.427-3.085.427-1.547 0-3.046-.27-4.49-.809-1.446-.54-2.648-1.31-3.606-2.305l3.42-3.483c.531.651 1.228 1.198 2.094 1.634.866.439 1.725.656 2.582.656a5.17 5.17 0 0 0 1.131-.123c.366-.083.688-.215.962-.398.274-.183.494-.427.656-.734.162-.306.244-.671.244-1.099 0-.427-.102-.754-.306-1.04-.203-.285-.493-.543-.87-.778a7.128 7.128 0 0 0-1.406-.643 68.996 68.996 0 0 0-1.91-.626 17.98 17.98 0 0 1-2.031-.795 6.76 6.76 0 0 1-1.771-1.177 5.43 5.43 0 0 1-1.252-1.74c-.316-.684-.473-1.513-.473-2.491 0-1.202.244-2.23.733-3.085a6.378 6.378 0 0 1 1.924-2.107 8.25 8.25 0 0 1 2.687-1.206 12.24 12.24 0 0 1 3.026-.382c1.222 0 2.47.224 3.742.672A9.645 9.645 0 0 1 68.397 4.5l-3.33 3.512-.002.007zM71.694 24.029V2.399h14.541v4.399h-9.5v4.092h8.982v4.186h-8.983v4.49h10.052v4.46h-15.09l-.002.003zM1.967 24.027h3.01l3.215-3.215 3.215 3.215h7.59L8.185 13.214l-2.808 2.808V7.776h7.234c.253 0 .356.18.388.26a.403.403 0 0 1-.091.457l-2.664 2.665 3.772 3.772 2.022-2.022 1.78-1.78c1.211-1.531 1.5-3.542.734-5.393C17.7 3.677 15.787 2.4 13.559 2.4H0v21.628h1.967z" fill="#15477F"/>
|
|
4
|
+
<path d="M43.927 4.364h5.253V0l-5.253 4.364z" fill="#F68D1E"/>
|
|
5
|
+
<path d="M.658 33.724v.542H0V28.8h.679v2.552h.02a1.45 1.45 0 0 1 1.218-.608c.256 0 .487.046.697.138.21.091.388.219.542.383.15.165.267.357.35.576.081.22.123.455.123.706 0 .252-.042.487-.124.709a1.768 1.768 0 0 1-.345.578 1.573 1.573 0 0 1-.541.386c-.213.094-.45.142-.716.142-.244 0-.477-.055-.699-.163a1.32 1.32 0 0 1-.534-.473H.656l.002-.002zm2.278-1.174a1.5 1.5 0 0 0-.073-.462 1.201 1.201 0 0 0-.217-.398 1.05 1.05 0 0 0-.359-.274 1.156 1.156 0 0 0-.496-.1 1.103 1.103 0 0 0-.838.375c-.103.116-.18.246-.236.397a1.348 1.348 0 0 0-.082.468c0 .163.028.32.082.469.055.148.135.281.236.393a1.104 1.104 0 0 0 .839.37 1.1 1.1 0 0 0 .495-.105c.142-.07.26-.162.359-.276.096-.115.17-.247.217-.398.048-.149.073-.302.073-.462v.003zM5.886 33.528H5.9l.948-2.69h.722l-1.663 4.237a2.771 2.771 0 0 1-.188.386c-.068.114-.146.21-.237.29a.976.976 0 0 1-.322.185c-.124.043-.27.064-.437.064a2.37 2.37 0 0 1-.22-.011 1.652 1.652 0 0 1-.228-.04l.064-.6c.117.039.229.057.34.057.179 0 .311-.05.398-.149.087-.098.167-.24.238-.422l.217-.572-1.467-3.427h.759l1.062 2.69v.002zM10.787 33.63h2.285v.636h-3v-5.119h.715v4.483zM14.526 29.602a.403.403 0 0 1-.133.31.453.453 0 0 1-.32.124.431.431 0 0 1-.315-.126.415.415 0 0 1-.13-.308.434.434 0 0 1 .446-.441c.123 0 .23.041.32.126.088.084.132.19.132.315zm-.108 4.664h-.678v-3.428h.678v3.428zM16.217 30.838a6.647 6.647 0 0 1 .03.564h.02a.96.96 0 0 1 .178-.255c.075-.08.16-.149.256-.21a1.253 1.253 0 0 1 .679-.192c.221 0 .41.036.57.111a1.142 1.142 0 0 1 .634.74c.05.17.075.35.075.542v2.125h-.678v-1.9c0-.14-.012-.273-.032-.398a.966.966 0 0 0-.12-.334.64.64 0 0 0-.237-.23.785.785 0 0 0-.39-.087.824.824 0 0 0-.663.308c-.172.206-.256.477-.256.82v1.821h-.679v-2.689a11.553 11.553 0 0 0-.027-.738h.644l-.004.002zM20.425 30.838c.01.087.017.185.023.293.005.11.007.198.007.272h.02a.957.957 0 0 1 .179-.256c.075-.08.16-.149.256-.21a1.253 1.253 0 0 1 .679-.192c.221 0 .41.036.57.111.16.076.293.174.398.3.106.126.186.272.236.44.05.17.075.35.075.542v2.125h-.678v-1.9c0-.14-.012-.273-.033-.398a.964.964 0 0 0-.118-.334.64.64 0 0 0-.238-.23.786.786 0 0 0-.39-.087.824.824 0 0 0-.663.308c-.172.206-.256.477-.256.82v1.821h-.679v-2.689a11.834 11.834 0 0 0-.027-.738h.644l-.005.002zM27.488 32.545c0 .265-.048.51-.141.731a1.738 1.738 0 0 1-.98.953 1.98 1.98 0 0 1-.732.135 1.99 1.99 0 0 1-.73-.135 1.697 1.697 0 0 1-.586-.377 1.76 1.76 0 0 1-.386-.576 1.863 1.863 0 0 1-.142-.73c0-.266.048-.508.142-.727.094-.22.224-.41.386-.567.165-.16.359-.284.585-.373.226-.089.47-.135.731-.135.26 0 .503.046.731.135.227.09.423.213.59.373.167.16.297.347.39.567.094.219.142.461.142.726zm-.708.005c0-.163-.025-.32-.075-.469a1.21 1.21 0 0 0-.222-.393 1.03 1.03 0 0 0-.359-.27 1.147 1.147 0 0 0-.489-.1c-.183 0-.347.034-.489.1a1.058 1.058 0 0 0-.358.27 1.186 1.186 0 0 0-.222.393 1.46 1.46 0 0 0-.075.469c0 .162.025.32.075.468.05.149.123.281.222.398.096.114.217.205.358.274.142.068.306.1.49.1.182 0 .347-.034.488-.1.142-.066.263-.158.359-.274.096-.117.171-.247.222-.398.05-.148.075-.306.075-.468zM30.04 34.266h-.737l-1.396-3.428h.751l1.006 2.697h.013l1.013-2.697h.722l-1.373 3.428h.002zM34.206 32.047c0-.256-.077-.446-.23-.567-.156-.123-.36-.185-.615-.185-.192 0-.375.037-.546.112a1.356 1.356 0 0 0-.43.286l-.36-.434c.168-.16.374-.284.618-.377.245-.092.505-.138.784-.138.247 0 .46.035.64.106.18.07.329.164.446.285.116.121.203.263.26.427a1.6 1.6 0 0 1 .087.528v1.497c0 .117.004.238.011.366.007.128.02.233.04.315h-.616a2.118 2.118 0 0 1-.057-.491h-.02a1.343 1.343 0 0 1-.473.427c-.19.1-.416.15-.677.15-.134 0-.276-.017-.422-.054a1.249 1.249 0 0 1-.403-.178.998.998 0 0 1-.299-.325.964.964 0 0 1-.119-.498c0-.26.071-.466.21-.62.14-.15.323-.267.549-.346.226-.08.482-.13.765-.156.284-.025.572-.036.862-.036v-.094h-.005zm-.167.585c-.169 0-.342.007-.523.02a2.36 2.36 0 0 0-.491.087.933.933 0 0 0-.366.195.447.447 0 0 0-.144.347c0 .1.021.185.062.254a.514.514 0 0 0 .162.166.692.692 0 0 0 .224.092c.082.018.167.025.254.025.318 0 .562-.096.733-.286.172-.19.256-.43.256-.72v-.18h-.167zM37.597 31.396h-.912v1.78c0 .205.04.354.117.443.078.09.201.133.368.133.062 0 .13-.007.203-.021a.775.775 0 0 0 .195-.06l.02.558a1.48 1.48 0 0 1-.272.069 1.91 1.91 0 0 1-.306.025c-.322 0-.571-.09-.74-.267-.172-.179-.256-.446-.256-.803v-1.857h-.658v-.558h.658v-.982h.671v.982h.912v.558zM41.5 32.522v.117a.99.99 0 0 1-.007.116h-2.726a.995.995 0 0 0 .098.407 1.087 1.087 0 0 0 .592.55c.133.053.274.08.423.08.23 0 .432-.05.6-.15.17-.1.303-.224.398-.368l.478.384c-.183.242-.4.423-.647.537a1.948 1.948 0 0 1-.827.171c-.26 0-.5-.043-.722-.13a1.669 1.669 0 0 1-.571-.366 1.72 1.72 0 0 1-.377-.566 1.921 1.921 0 0 1-.137-.738c0-.27.045-.51.135-.734.089-.224.214-.416.372-.576.16-.16.347-.283.564-.372a1.84 1.84 0 0 1 .704-.135c.252 0 .48.041.686.123.205.083.379.202.52.355.142.155.252.34.33.56.077.219.116.466.116.74l-.002-.005zm-.695-.274a1.281 1.281 0 0 0-.068-.38.845.845 0 0 0-.478-.512 1.055 1.055 0 0 0-.416-.074 1.111 1.111 0 0 0-.742.28 1.054 1.054 0 0 0-.336.686H40.805zM44.283 29.147h1.56c.275 0 .526.028.752.083.227.054.42.141.579.255.157.115.28.263.367.442.087.178.13.393.13.644s-.047.475-.141.658a1.194 1.194 0 0 1-.39.448 1.721 1.721 0 0 1-.593.256 3.17 3.17 0 0 1-.74.082h-.809v2.248h-.715v-5.118.002zm.715 2.262h.759c.174 0 .334-.016.48-.047.146-.032.274-.08.38-.144a.697.697 0 0 0 .246-.256.809.809 0 0 0 .087-.391.738.738 0 0 0-.092-.386.727.727 0 0 0-.246-.254 1.088 1.088 0 0 0-.373-.137 2.524 2.524 0 0 0-.47-.039h-.775v1.657l.004-.003zM50.279 32.047c0-.256-.078-.446-.23-.567-.156-.123-.36-.185-.615-.185-.192 0-.375.037-.547.112a1.356 1.356 0 0 0-.43.286l-.36-.434c.169-.16.374-.284.619-.377.245-.092.505-.138.784-.138.246 0 .459.035.64.106.18.07.329.164.445.285.117.121.203.263.26.427a1.6 1.6 0 0 1 .087.528v1.497c0 .117.005.238.012.366s.02.233.039.315h-.615a2.124 2.124 0 0 1-.057-.491h-.02a1.343 1.343 0 0 1-.474.427c-.19.1-.416.15-.676.15-.135 0-.276-.017-.423-.054a1.248 1.248 0 0 1-.402-.178.997.997 0 0 1-.3-.325.963.963 0 0 1-.118-.498c0-.26.07-.466.21-.62.14-.15.322-.267.549-.346.226-.08.482-.13.765-.156.283-.025.571-.036.861-.036v-.094h-.004zm-.167.585c-.169 0-.343.007-.523.02-.18.014-.345.044-.491.087a.932.932 0 0 0-.366.195.447.447 0 0 0-.144.347c0 .1.02.185.062.254a.515.515 0 0 0 .162.166.692.692 0 0 0 .224.092c.082.018.167.025.253.025.318 0 .563-.096.734-.286.171-.19.256-.43.256-.72v-.18h-.167zM52.057 31.222a7.792 7.792 0 0 0-.02-.384h.643c.01.087.016.188.023.3.005.114.007.205.007.278h.02c.097-.203.238-.365.423-.489.186-.123.394-.185.627-.185.105 0 .194.01.267.03l-.03.628a1.235 1.235 0 0 0-.31-.036.928.928 0 0 0-.428.091.844.844 0 0 0-.3.242c-.08.1-.139.217-.178.35a1.476 1.476 0 0 0-.057.416v1.8h-.678v-2.689c0-.091-.003-.21-.007-.354l-.002.002z" fill="#15477F"/>
|
|
6
|
+
<path d="M56.272 31.396h-.911v1.78c0 .205.039.354.116.443.078.09.201.133.368.133.062 0 .13-.007.203-.021a.775.775 0 0 0 .195-.06l.02.558c-.082.03-.171.053-.272.069a1.907 1.907 0 0 1-.306.025c-.322 0-.571-.09-.74-.267-.172-.179-.256-.446-.256-.803v-1.857h-.658v-.558h.658v-.982h.672v.982h.911v.558zM57.586 30.838c.01.087.016.185.023.293.005.11.007.198.007.272h.02a.96.96 0 0 1 .179-.256c.075-.08.16-.149.256-.21a1.252 1.252 0 0 1 .679-.192c.221 0 .41.036.57.111a1.142 1.142 0 0 1 .633.74c.05.17.076.35.076.542v2.125h-.679v-1.9c0-.14-.011-.273-.032-.398a.966.966 0 0 0-.118-.334.64.64 0 0 0-.238-.23.785.785 0 0 0-.39-.087.824.824 0 0 0-.664.308c-.17.206-.255.477-.255.82v1.821h-.68v-2.689a11.553 11.553 0 0 0-.026-.738h.644l-.005.002zM64.384 32.522v.117c0 .039-.002.078-.007.116h-2.726a.994.994 0 0 0 .098.407 1.088 1.088 0 0 0 .592.55c.133.053.274.08.423.08.23 0 .432-.05.601-.15.17-.1.302-.224.398-.368l.477.384c-.183.242-.4.423-.646.537a1.947 1.947 0 0 1-.828.171c-.26 0-.5-.043-.722-.13a1.67 1.67 0 0 1-.571-.366 1.723 1.723 0 0 1-.377-.566 1.921 1.921 0 0 1-.137-.738c0-.27.046-.51.135-.734.089-.224.215-.416.372-.576a1.7 1.7 0 0 1 .565-.372c.217-.09.452-.135.703-.135.252 0 .48.041.686.123.206.083.38.202.52.355.142.155.252.34.33.56.078.219.116.466.116.74l-.002-.005zm-.694-.274a1.281 1.281 0 0 0-.07-.38.843.843 0 0 0-.477-.512 1.055 1.055 0 0 0-.416-.074 1.11 1.11 0 0 0-.742.28 1.05 1.05 0 0 0-.336.686h2.041zM65.316 31.222a7.782 7.782 0 0 0-.02-.384h.644c.01.087.016.188.023.3.005.114.007.205.007.278h.02c.096-.203.238-.365.423-.489.185-.123.393-.185.626-.185.105 0 .195.01.268.03l-.03.628a1.235 1.235 0 0 0-.31-.036.927.927 0 0 0-.428.091.844.844 0 0 0-.3.242c-.08.1-.139.217-.178.35a1.476 1.476 0 0 0-.057.416v1.8h-.678v-2.689c0-.091-.003-.21-.007-.354l-.003.002zM69.793 31.706a.93.93 0 0 0-.795-.427c-.078 0-.156.01-.231.025a.635.635 0 0 0-.206.08.461.461 0 0 0-.144.137.363.363 0 0 0-.055.206c0 .144.064.251.195.322.13.071.324.135.584.192.165.039.316.085.455.137.14.053.26.12.366.2.103.08.185.173.242.285a.85.85 0 0 1 .087.39c0 .204-.039.373-.117.515a1.03 1.03 0 0 1-.306.342c-.128.09-.274.153-.436.192a2.196 2.196 0 0 1-.508.057c-.26 0-.514-.05-.763-.15a1.487 1.487 0 0 1-.619-.464l.484-.412c.092.135.218.25.38.34.162.092.338.138.532.138.087 0 .17-.01.25-.025a.752.752 0 0 0 .216-.082.468.468 0 0 0 .156-.151.44.44 0 0 0 .057-.238c0-.16-.076-.276-.229-.354a3.054 3.054 0 0 0-.67-.217 4.06 4.06 0 0 1-.349-.105 1.238 1.238 0 0 1-.322-.17.875.875 0 0 1-.235-.271.805.805 0 0 1-.092-.402.94.94 0 0 1 .405-.798 1.3 1.3 0 0 1 .411-.187 1.832 1.832 0 0 1 1.19.082c.229.096.407.235.533.418l-.47.398.004-.003z" fill="#15477F"/>
|
|
7
|
+
</g>
|
|
8
|
+
<defs>
|
|
9
|
+
<clipPath id="elv0fbenwa">
|
|
10
|
+
<path fill="#fff" d="M0 0h86.784v36H0z"/>
|
|
11
|
+
</clipPath>
|
|
12
|
+
</defs>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
.e-btn {
|
|
2
|
+
font-family: var(--rs-font-family);
|
|
3
|
+
display: flex;
|
|
4
|
+
justify-content: center;
|
|
5
|
+
align-items: center;
|
|
6
|
+
gap: 6px;
|
|
7
|
+
font-style: normal;
|
|
8
|
+
border: 1px solid #adb5bd;
|
|
9
|
+
background: transparent;
|
|
10
|
+
color: var(--rs-cancel-btn-color);
|
|
11
|
+
height: 32px;
|
|
12
|
+
min-width: 80px;
|
|
13
|
+
padding: 0 10px;
|
|
14
|
+
font-size: 13px;
|
|
15
|
+
border-radius: 4px;
|
|
16
|
+
box-shadow: none !important;
|
|
17
|
+
line-height: normal;
|
|
18
|
+
&.small {
|
|
19
|
+
height: 26px;
|
|
20
|
+
min-width: 64px;
|
|
21
|
+
font-size: 12px;
|
|
22
|
+
}
|
|
23
|
+
&.large {
|
|
24
|
+
height: 40px;
|
|
25
|
+
min-width: 110px;
|
|
26
|
+
font-size: 15px;
|
|
27
|
+
}
|
|
28
|
+
&.extra-large {
|
|
29
|
+
height: 48px;
|
|
30
|
+
min-width: 112px;
|
|
31
|
+
font-size: 16px;
|
|
32
|
+
}
|
|
33
|
+
&:not([disabled]):hover,
|
|
34
|
+
&:not([disabled]):active,
|
|
35
|
+
&:not([disabled]):focus {
|
|
36
|
+
border-color: #6c7c90;
|
|
37
|
+
background: #fff;
|
|
38
|
+
color: var(--rs-cancel-btn-color);
|
|
39
|
+
}
|
|
40
|
+
&[disabled] {
|
|
41
|
+
opacity: 0.4;
|
|
42
|
+
color: var(--rs-cancel-btn-color);
|
|
43
|
+
border: 1px solid #adb5bd;
|
|
44
|
+
background-color: #fff;
|
|
45
|
+
}
|
|
46
|
+
&.e-primary {
|
|
47
|
+
color: #fff;
|
|
48
|
+
border-color: var(--rs-primary-btn-bg);
|
|
49
|
+
background: var(--rs-primary-btn-bg);
|
|
50
|
+
font-weight: 700;
|
|
51
|
+
&:not([disabled]):hover,
|
|
52
|
+
&:not([disabled]):active,
|
|
53
|
+
&:not([disabled]):focus {
|
|
54
|
+
border-color: var(--rs-primary-btn-hover-bg);
|
|
55
|
+
background: var(--rs-primary-btn-hover-bg);
|
|
56
|
+
color: #fff;
|
|
57
|
+
}
|
|
58
|
+
&[disabled] {
|
|
59
|
+
color: #fff;
|
|
60
|
+
background: var(--rs-primary-btn-bg);
|
|
61
|
+
border-color: var(--rs-primary-btn-bg);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
&.text {
|
|
65
|
+
border-color: transparent;
|
|
66
|
+
&:not([disabled]):hover,
|
|
67
|
+
&:not([disabled]):active,
|
|
68
|
+
&:not([disabled]):focus {
|
|
69
|
+
border-color: rgba(31, 123, 255, 0.2);
|
|
70
|
+
background: rgba(31, 123, 255, 0.04);
|
|
71
|
+
color: #1364b3;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.e-dropdown-btn {
|
|
77
|
+
&.e-active {
|
|
78
|
+
border-color: rgba(31, 123, 255, 0.2);
|
|
79
|
+
background: rgba(31, 123, 255, 0.04);
|
|
80
|
+
color: #1364b3;
|
|
81
|
+
}
|
|
82
|
+
.e-btn-icon {
|
|
83
|
+
padding: 0 !important;
|
|
84
|
+
&::before {
|
|
85
|
+
content: "" !important;
|
|
86
|
+
display: block;
|
|
87
|
+
width: 16px;
|
|
88
|
+
height: 16px;
|
|
89
|
+
background-image: url("/assets/img/dropdown-arrow.svg");
|
|
90
|
+
background-size: cover;
|
|
91
|
+
background-position: center;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.e-dropdown-popup {
|
|
97
|
+
border-radius: 10px;
|
|
98
|
+
background: #fff;
|
|
99
|
+
padding: 16px 12px;
|
|
100
|
+
box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
|
|
101
|
+
ul {
|
|
102
|
+
border: 0;
|
|
103
|
+
padding: 0;
|
|
104
|
+
.e-item {
|
|
105
|
+
height: 28px;
|
|
106
|
+
padding: 4px 8px;
|
|
107
|
+
color: #44566c;
|
|
108
|
+
font-size: 12px;
|
|
109
|
+
font-weight: 400;
|
|
110
|
+
line-height: 16px;
|
|
111
|
+
align-items: center;
|
|
112
|
+
&:hover, &:active{
|
|
113
|
+
border-radius: 4px;
|
|
114
|
+
background: rgba(31, 123, 255, 0.04);
|
|
115
|
+
color: #44566c;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|