@falcon-ng/tailwind 0.0.3 → 0.0.5

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.
Files changed (37) hide show
  1. package/esm2020/lib/control-type/AutoComplete.mjs +8 -0
  2. package/esm2020/lib/control-type/Button.mjs +8 -0
  3. package/esm2020/lib/control-type/ButtonToggle.mjs +8 -0
  4. package/esm2020/lib/control-type/CheckBox.mjs +8 -0
  5. package/esm2020/lib/control-type/Chip.mjs +8 -0
  6. package/esm2020/lib/control-type/DatePicker.mjs +8 -0
  7. package/esm2020/lib/control-type/Divider.mjs +8 -0
  8. package/esm2020/lib/control-type/Editor.mjs +8 -0
  9. package/esm2020/lib/control-type/Radio.mjs +8 -0
  10. package/esm2020/lib/control-type/RichTextEditor.mjs +8 -0
  11. package/esm2020/lib/control-type/SlideToggle.mjs +8 -0
  12. package/esm2020/lib/control-type/Slider.mjs +8 -0
  13. package/esm2020/lib/control-type/{textarea.mjs → Textarea.mjs} +1 -1
  14. package/esm2020/lib/control-type/{textbox.mjs → Textbox.mjs} +1 -1
  15. package/esm2020/lib/falcon-core.module.mjs +1 -3
  16. package/esm2020/public-api.mjs +16 -18
  17. package/fesm2015/falcon-ng-tailwind.mjs +85 -3
  18. package/fesm2015/falcon-ng-tailwind.mjs.map +1 -1
  19. package/fesm2020/falcon-ng-tailwind.mjs +85 -3
  20. package/fesm2020/falcon-ng-tailwind.mjs.map +1 -1
  21. package/lib/control-type/AutoComplete.d.ts +5 -0
  22. package/lib/control-type/Button.d.ts +5 -0
  23. package/lib/control-type/ButtonToggle.d.ts +5 -0
  24. package/lib/control-type/CheckBox.d.ts +5 -0
  25. package/lib/control-type/Chip.d.ts +5 -0
  26. package/lib/control-type/DatePicker.d.ts +5 -0
  27. package/lib/control-type/Divider.d.ts +5 -0
  28. package/lib/control-type/Editor.d.ts +5 -0
  29. package/lib/control-type/Radio.d.ts +5 -0
  30. package/lib/control-type/RichTextEditor.d.ts +5 -0
  31. package/lib/control-type/SlideToggle.d.ts +5 -0
  32. package/lib/control-type/Slider.d.ts +5 -0
  33. package/lib/control-type/{textarea.d.ts → Textarea.d.ts} +0 -0
  34. package/lib/control-type/{textbox.d.ts → Textbox.d.ts} +0 -0
  35. package/lib/falcon-core.module.d.ts +1 -1
  36. package/package.json +1 -1
  37. package/public-api.d.ts +15 -17
@@ -0,0 +1,5 @@
1
+ import { BaseControl } from '../base-control';
2
+ import { ControlType } from '../model/enum';
3
+ export declare class AutoComplete extends BaseControl<string> {
4
+ controlType: ControlType;
5
+ }
@@ -0,0 +1,5 @@
1
+ import { BaseControl } from "../base-control";
2
+ import { ControlType } from "../model/enum";
3
+ export declare class Button extends BaseControl<string> {
4
+ controlType: ControlType;
5
+ }
@@ -0,0 +1,5 @@
1
+ import { BaseControl } from '../base-control';
2
+ import { ControlType } from '../model/enum';
3
+ export declare class ButtonToggle extends BaseControl<string> {
4
+ controlType: ControlType;
5
+ }
@@ -0,0 +1,5 @@
1
+ import { BaseControl } from '../base-control';
2
+ import { ControlType } from '../model/enum';
3
+ export declare class CheckBox extends BaseControl<boolean> {
4
+ controlType: ControlType;
5
+ }
@@ -0,0 +1,5 @@
1
+ import { BaseControl } from '../base-control';
2
+ import { ControlType } from '../model/enum';
3
+ export declare class Chip extends BaseControl<string> {
4
+ controlType: ControlType;
5
+ }
@@ -0,0 +1,5 @@
1
+ import { BaseControl } from '../base-control';
2
+ import { ControlType } from '../model/enum';
3
+ export declare class DatePicker extends BaseControl<string> {
4
+ controlType: ControlType;
5
+ }
@@ -0,0 +1,5 @@
1
+ import { BaseControl } from '../base-control';
2
+ import { ControlType } from '../model/enum';
3
+ export declare class Divider extends BaseControl<string> {
4
+ controlType: ControlType;
5
+ }
@@ -0,0 +1,5 @@
1
+ import { BaseControl } from '../base-control';
2
+ import { ControlType } from '../model/enum';
3
+ export declare class Editor extends BaseControl<string> {
4
+ controlType: ControlType;
5
+ }
@@ -0,0 +1,5 @@
1
+ import { BaseControl } from '../base-control';
2
+ import { ControlType } from '../model/enum';
3
+ export declare class Radio extends BaseControl<string> {
4
+ controlType: ControlType;
5
+ }
@@ -0,0 +1,5 @@
1
+ import { BaseControl } from '../base-control';
2
+ import { ControlType } from '../model/enum';
3
+ export declare class RichTextEditor extends BaseControl<any> {
4
+ controlType: ControlType;
5
+ }
@@ -0,0 +1,5 @@
1
+ import { BaseControl } from '../base-control';
2
+ import { ControlType } from '../model/enum';
3
+ export declare class SliderToggle extends BaseControl<boolean> {
4
+ controlType: ControlType;
5
+ }
@@ -0,0 +1,5 @@
1
+ import { BaseControl } from '../base-control';
2
+ import { ControlType } from '../model/enum';
3
+ export declare class Slider extends BaseControl<number> {
4
+ controlType: ControlType;
5
+ }
File without changes
@@ -30,6 +30,6 @@ import * as i27 from "@kolkov/angular-editor";
30
30
  export declare class FalconCoreModule {
31
31
  static forRoot(environment: any): ModuleWithProviders<FalconCoreModule>;
32
32
  static ɵfac: i0.ɵɵFactoryDeclaration<FalconCoreModule, never>;
33
- static ɵmod: i0.ɵɵNgModuleDeclaration<FalconCoreModule, [typeof i1.TextboxComponent, typeof i2.TextareaComponent, typeof i3.SelectComponent, typeof i4.ReactiveFieldDirective, typeof i5.ControlBuilderComponent, typeof i6.DatePickerComponent, typeof i7.CheckboxComponent, typeof i8.RadioComponent, typeof i9.AutoCompleteComponent, typeof i10.ButtonToggleComponent, typeof i11.ChipComponent, typeof i12.SliderComponent, typeof i13.SlideToggleComponent, typeof i14.ButtonComponent, typeof i15.DialogComponent, typeof i16.SnackBarComponent, typeof i17.BottomSheetComponent, typeof i18.ProgressBarComponent, typeof i19.ProgressSpinnerComponent, typeof i20.TableComponent, typeof i21.PaginationComponent, typeof i22.RichTextEditorComponent], [typeof i23.AngularmaterialModule, typeof i24.CommonModule, typeof i25.FormsModule, typeof i25.ReactiveFormsModule, typeof i26.RouterModule, typeof i27.AngularEditorModule], [typeof i23.AngularmaterialModule, typeof i24.CommonModule, typeof i25.FormsModule, typeof i25.ReactiveFormsModule, typeof i5.ControlBuilderComponent, typeof i26.RouterModule, typeof i18.ProgressBarComponent, typeof i19.ProgressSpinnerComponent, typeof i11.ChipComponent, typeof i21.PaginationComponent, typeof i20.TableComponent, typeof i27.AngularEditorModule, typeof i14.ButtonComponent]>;
33
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FalconCoreModule, [typeof i1.TextboxComponent, typeof i2.TextareaComponent, typeof i3.SelectComponent, typeof i4.ReactiveFieldDirective, typeof i5.ControlBuilderComponent, typeof i6.DatePickerComponent, typeof i7.CheckboxComponent, typeof i8.RadioComponent, typeof i9.AutoCompleteComponent, typeof i10.ButtonToggleComponent, typeof i11.ChipComponent, typeof i12.SliderComponent, typeof i13.SlideToggleComponent, typeof i14.ButtonComponent, typeof i15.DialogComponent, typeof i16.SnackBarComponent, typeof i17.BottomSheetComponent, typeof i18.ProgressBarComponent, typeof i19.ProgressSpinnerComponent, typeof i20.TableComponent, typeof i21.PaginationComponent, typeof i22.RichTextEditorComponent], [typeof i23.AngularmaterialModule, typeof i24.CommonModule, typeof i25.FormsModule, typeof i25.ReactiveFormsModule, typeof i26.RouterModule, typeof i27.AngularEditorModule], [typeof i23.AngularmaterialModule, typeof i24.CommonModule, typeof i25.FormsModule, typeof i25.ReactiveFormsModule, typeof i5.ControlBuilderComponent, typeof i26.RouterModule, typeof i18.ProgressBarComponent, typeof i19.ProgressSpinnerComponent, typeof i21.PaginationComponent, typeof i20.TableComponent, typeof i27.AngularEditorModule, typeof i14.ButtonComponent]>;
34
34
  static ɵinj: i0.ɵɵInjectorDeclaration<FalconCoreModule>;
35
35
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@falcon-ng/tailwind",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.0.0",
6
6
  "@angular/core": "^15.0.0"
package/public-api.d.ts CHANGED
@@ -1,37 +1,35 @@
1
1
  export * from './lib/module/angularmaterial.module';
2
2
  export * from './lib/falcon-core.module';
3
3
  export * from './lib/reactive-field.directive';
4
+ export * from './lib/control-builder/control-builder.component';
4
5
  export * from './lib/service/http/igeneric-http-client';
5
6
  export * from './lib/service/logger.service';
6
7
  export * from './lib/service/open-id/auth.service';
7
8
  export * from './lib/service/open-id/auth-guard.service';
8
9
  export * from './lib/service/appsetting.service';
10
+ export * from './lib/control-type/AutoComplete';
11
+ export * from './lib/control-type/Button';
12
+ export * from './lib/control-type/ButtonToggle';
13
+ export * from './lib/control-type/CheckBox';
14
+ export * from './lib/control-type/Chip';
15
+ export * from './lib/control-type/DatePicker';
16
+ export * from './lib/control-type/Divider';
17
+ export * from './lib/control-type/Editor';
18
+ export * from './lib/control-type/Radio';
19
+ export * from './lib/control-type/RichTextEditor';
9
20
  export * from './lib/control-type/select';
10
- export * from './lib/control-type/textarea';
11
- export * from './lib/control-type/textbox';
21
+ export * from './lib/control-type/Slider';
22
+ export * from './lib/control-type/SlideToggle';
23
+ export * from './lib/control-type/Textarea';
24
+ export * from './lib/control-type/Textbox';
12
25
  export * from './lib/model/enum';
13
26
  export * from './lib/model/constant';
14
27
  export * from './lib/model/environments';
15
28
  export * from './lib/model/ivalidator';
16
29
  export * from './lib/control-builder/control-builder.component';
17
30
  export * from './lib/base-form-component';
18
- export * from './lib/component/auto-complete/auto-complete.component';
19
- export * from './lib/component/snack-bar/snack-bar.component';
20
- export * from './lib/component/chips/chip.component';
21
31
  export * from './lib/component/table/table.component';
22
32
  export * from './lib/component/pagination/pagination.component';
23
- export * from './lib/component/rich-text-editor/rich-text-editor.component';
24
- export * from './lib/component/textbox/textbox.component';
25
- export * from './lib/component/textarea/textarea.component';
26
- export * from './lib/component/radio/radio.component';
27
- export * from './lib/component/select/select.component';
28
- export * from './lib/component/slide-toggle/slide-toggle.component';
29
- export * from './lib/component/slider/slider.component';
30
- export * from './lib/component/date-picker/date-picker.component';
31
- export * from './lib/component/dialog/dialog.component';
32
- export * from './lib/component/checkbox/checkbox.component';
33
33
  export * from './lib/component/progress-bar/progress-bar.component';
34
34
  export * from './lib/component/progress-spinner/progress-spinner.component';
35
- export * from './lib/component/bottom-sheet/bottom-sheet.component';
36
- export * from './lib/component/button-toggle/button-toggle.component';
37
35
  export * from './lib/component/button/button.component';