coer-elements 0.0.1 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- package/Signals/{index.d.ts → index.ts} +3 -3
- package/Signals/src/breakpoint.signal.ts +3 -0
- package/Signals/src/isLoading.signal.ts +2 -0
- package/Signals/src/isModalOpen.signal.ts +2 -0
- package/Tools/{index.d.ts → index.ts} +8 -8
- package/Tools/src/Breadcrumbs.class.ts +84 -0
- package/Tools/src/ControlValue.ts +63 -0
- package/Tools/src/DateTime.class.ts +27 -0
- package/Tools/src/Files.class.ts +119 -0
- package/Tools/src/Page.class.ts +195 -0
- package/Tools/src/Screen.class.ts +50 -0
- package/Tools/src/Source.class.ts +106 -0
- package/Tools/src/Tools.ts +217 -0
- package/components/index.ts +2 -0
- package/components/src/coer-alert/coer-alert.component.html +56 -0
- package/components/src/coer-alert/coer-alert.component.scss +100 -0
- package/components/src/coer-alert/coer-alert.component.ts +249 -0
- package/components/src/components.module.ts +97 -0
- package/esm2022/index.mjs +2 -4
- package/fesm2022/coer-elements.mjs +0 -1006
- package/fesm2022/coer-elements.mjs.map +1 -1
- package/index.d.ts +1 -3
- package/package.json +14 -1
- package/styles/index.css +249 -17
- package/styles/index.scss +98 -2
- package/README.md +0 -24
- package/Signals/src/breakpoint.signal.d.ts +0 -1
- package/Signals/src/isLoading.signal.d.ts +0 -1
- package/Signals/src/isModalOpen.signal.d.ts +0 -1
- package/Tools/src/Breadcrumbs.class.d.ts +0 -18
- package/Tools/src/ControlValue.d.ts +0 -23
- package/Tools/src/DateTime.class.d.ts +0 -11
- package/Tools/src/Files.class.d.ts +0 -16
- package/Tools/src/Page.class.d.ts +0 -66
- package/Tools/src/Screen.class.d.ts +0 -11
- package/Tools/src/Source.class.d.ts +0 -20
- package/Tools/src/Tools.d.ts +0 -33
- package/components/index.d.ts +0 -2
- package/components/src/coer-alert/coer-alert.component.d.ts +0 -23
- package/components/src/components.module.d.ts +0 -10
- package/esm2022/Signals/index.mjs +0 -4
- package/esm2022/Signals/src/breakpoint.signal.mjs +0 -4
- package/esm2022/Signals/src/isLoading.signal.mjs +0 -3
- package/esm2022/Signals/src/isModalOpen.signal.mjs +0 -3
- package/esm2022/Tools/index.mjs +0 -9
- package/esm2022/Tools/src/Breadcrumbs.class.mjs +0 -63
- package/esm2022/Tools/src/ControlValue.mjs +0 -44
- package/esm2022/Tools/src/DateTime.class.mjs +0 -22
- package/esm2022/Tools/src/Files.class.mjs +0 -93
- package/esm2022/Tools/src/Page.class.mjs +0 -160
- package/esm2022/Tools/src/Screen.class.mjs +0 -43
- package/esm2022/Tools/src/Source.class.mjs +0 -79
- package/esm2022/Tools/src/Tools.mjs +0 -200
- package/esm2022/components/index.mjs +0 -3
- package/esm2022/components/src/coer-alert/coer-alert.component.mjs +0 -227
- package/esm2022/components/src/components.module.mjs +0 -92
- package/esm2022/interfaces/index.mjs +0 -7
- package/esm2022/interfaces/src/IAppSource.interface.mjs +0 -2
- package/esm2022/interfaces/src/IBreadcrumb.interface.mjs +0 -2
- package/esm2022/interfaces/src/ICoerRef.interface.mjs +0 -2
- package/esm2022/interfaces/src/IGoBack.interface.mjs +0 -2
- package/esm2022/interfaces/src/IPatch.interface.mjs +0 -2
- package/esm2022/interfaces/src/IScreenSize.interface.mjs +0 -2
- package/interfaces/index.d.ts +0 -6
- package/interfaces/src/IAppSource.interface.d.ts +0 -4
- package/interfaces/src/IBreadcrumb.interface.d.ts +0 -6
- package/interfaces/src/ICoerRef.interface.d.ts +0 -10
- package/interfaces/src/IGoBack.interface.d.ts +0 -6
- package/interfaces/src/IPatch.interface.d.ts +0 -5
- package/interfaces/src/IScreenSize.interface.d.ts +0 -5
- package/styles/coer.scss +0 -96
@@ -0,0 +1,97 @@
|
|
1
|
+
import { NgModule } from '@angular/core';
|
2
|
+
import { CommonModule } from '@angular/common';
|
3
|
+
import { RouterModule } from '@angular/router';
|
4
|
+
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
5
|
+
//import { DirectivesModule } from 'src/app/shared/directives/directives.module';
|
6
|
+
//import { PipesModule } from 'src/app/shared/pipes/pipes.module';
|
7
|
+
|
8
|
+
//Angular Material
|
9
|
+
//import { MatButtonModule } from '@angular/material/button';
|
10
|
+
//import { MatCheckboxModule } from '@angular/material/checkbox';
|
11
|
+
//import { MatInputModule } from '@angular/material/input';
|
12
|
+
//import { MatFormFieldModule } from '@angular/material/form-field';
|
13
|
+
//import { MatSlideToggleModule } from '@angular/material/slide-toggle';
|
14
|
+
//import { MatTabsModule } from '@angular/material/tabs';
|
15
|
+
|
16
|
+
//Components
|
17
|
+
import { CoerAlert } from './coer-alert/coer-alert.component';
|
18
|
+
//import { CoerButton } from './coer-button/coer-button.component';
|
19
|
+
//import { CoerCheckbox } from './coer-checkbox/coer-checkbox.component';
|
20
|
+
//import { CoerFilebox } from './coer-filebox/coer-filebox.component';
|
21
|
+
//import { CoerForm } from './coer-form/coer-form.component';
|
22
|
+
//import { CoerGrid } from './coer-grid/coer-grid.component';
|
23
|
+
//import { CoerModal } from './coer-modal/coer-modal.component';
|
24
|
+
//import { CoerNumberBox } from './coer-numberbox/coer-numberbox.component';
|
25
|
+
//import { CoerPageTitle } from './coer-page-title/coer-page-title.component';
|
26
|
+
//import { CoerSelectbox } from './coer-selectbox/coer-selectbox.component';
|
27
|
+
//import { CoerSwitch } from './coer-switch/coer-switch.component';
|
28
|
+
//import { CoerTab } from './coer-tab/coer-tab.component';
|
29
|
+
//import { CoerTextarea } from './coer-textarea/coer-textarea.component';
|
30
|
+
//import { CoerTextBox } from './coer-textbox/coer-textbox.component';
|
31
|
+
|
32
|
+
@NgModule({
|
33
|
+
imports: [
|
34
|
+
CommonModule,
|
35
|
+
RouterModule,
|
36
|
+
FormsModule,
|
37
|
+
ReactiveFormsModule,
|
38
|
+
//PipesModule,
|
39
|
+
//MatButtonModule,
|
40
|
+
//MatCheckboxModule,
|
41
|
+
//MatInputModule,
|
42
|
+
//MatFormFieldModule,
|
43
|
+
//MatSlideToggleModule,
|
44
|
+
//MatTabsModule,
|
45
|
+
//DirectivesModule
|
46
|
+
],
|
47
|
+
declarations: [
|
48
|
+
CoerAlert,
|
49
|
+
//CoerButton,
|
50
|
+
//CoerCheckbox,
|
51
|
+
//CoerFilebox,
|
52
|
+
//CoerForm,
|
53
|
+
//CoerGrid,
|
54
|
+
//CoerModal,
|
55
|
+
//CoerNumberBox,
|
56
|
+
//CoerPageTitle,
|
57
|
+
//CoerSelectbox,
|
58
|
+
//CoerSwitch,
|
59
|
+
//CoerTextarea,
|
60
|
+
//CoerTab,
|
61
|
+
//CoerTextBox,
|
62
|
+
],
|
63
|
+
exports: [
|
64
|
+
CoerAlert,
|
65
|
+
//CoerButton,
|
66
|
+
//CoerCheckbox,
|
67
|
+
//CoerFilebox,
|
68
|
+
//CoerForm,
|
69
|
+
//CoerGrid,
|
70
|
+
//CoerModal,
|
71
|
+
//CoerNumberBox,
|
72
|
+
//CoerPageTitle,
|
73
|
+
//CoerSelectbox,
|
74
|
+
//CoerSwitch,
|
75
|
+
//CoerTextarea,
|
76
|
+
//CoerTab,
|
77
|
+
//CoerTextBox,
|
78
|
+
]
|
79
|
+
})
|
80
|
+
export class ComponentsModule { }
|
81
|
+
//export * from './coer-alert/coer-alert.component';
|
82
|
+
//export * from './coer-button/coer-button.component';
|
83
|
+
//export * from './coer-checkbox/coer-checkbox.component';
|
84
|
+
//export * from './coer-filebox/coer-filebox.component';
|
85
|
+
//export * from './coer-filebox/coer-filebox.interface';
|
86
|
+
//export * from './coer-form/coer-form.component';
|
87
|
+
//export * from './coer-grid/coer-grid.component';
|
88
|
+
//export * from './coer-grid/coer-grid.interface';
|
89
|
+
//export * from './coer-grid/coer-grid.templates';
|
90
|
+
//export * from './coer-modal/coer-modal.component';
|
91
|
+
//export * from './coer-numberbox/coer-numberbox.component';
|
92
|
+
//export * from './coer-page-title/coer-page-title.component';
|
93
|
+
//export * from './coer-page-title/pageTitle.interface';
|
94
|
+
//export * from './coer-selectbox/coer-selectbox.component';
|
95
|
+
//export * from './coer-switch/coer-switch.component';
|
96
|
+
//export * from './coer-tab/coer-tab.component';
|
97
|
+
//export * from './coer-textbox/coer-textbox.component';
|
package/esm2022/index.mjs
CHANGED
@@ -1,4 +1,2 @@
|
|
1
|
-
export
|
2
|
-
|
3
|
-
export * from './Tools';
|
4
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9wcm9qZWN0cy9jb2VyLWVsZW1lbnRzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDO0FBQzdCLGNBQWMsV0FBVyxDQUFDO0FBQzFCLGNBQWMsU0FBUyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9jb21wb25lbnRzJztcclxuZXhwb3J0ICogZnJvbSAnLi9TaWduYWxzJztcclxuZXhwb3J0ICogZnJvbSAnLi9Ub29scyc7Il19
|
1
|
+
export {};
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9wcm9qZWN0cy9jb2VyLWVsZW1lbnRzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQge307Il19
|