@cauca-911/material 19.0.3 → 20.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. package/assets/i18n/cauca/en-material.json +2 -1
  2. package/assets/i18n/cauca/es-material.json +2 -1
  3. package/assets/i18n/cauca/fr-material.json +2 -1
  4. package/fesm2022/cauca-911-material.mjs +771 -176
  5. package/fesm2022/cauca-911-material.mjs.map +1 -1
  6. package/index.d.ts +279 -5
  7. package/package.json +8 -8
  8. package/lib/cauca-date-time-picker/cauca-date-time-picker.component.d.ts +0 -44
  9. package/lib/cauca-date-time-picker/components/desktop-time-picker/desktop-time-picker.component.d.ts +0 -14
  10. package/lib/cauca-date-time-picker/components/dialog-date-time-picker/dialog-date-time-picker.component.d.ts +0 -45
  11. package/lib/cauca-date-time-picker/components/mobile-time-picker/mobile-time-picker.component.d.ts +0 -11
  12. package/lib/cauca-date-time-picker/models/dialog-date-time-picker-data.d.ts +0 -26
  13. package/lib/cauca-input-file/cauca-input-file.component.d.ts +0 -23
  14. package/lib/cauca-input-multiple-langue/cauca-input-multiple-langue.component.d.ts +0 -19
  15. package/lib/cauca-material.component.d.ts +0 -5
  16. package/lib/cauca-material.module.d.ts +0 -26
  17. package/lib/cauca-material.service.d.ts +0 -5
  18. package/lib/cauca-menu-sidebar/cauca-menu-sidebar.component.d.ts +0 -22
  19. package/lib/cauca-menu-vertical/cauca-menu-vertical.component.d.ts +0 -14
  20. package/lib/cauca-simple-dialog/cauca-simple-dialog.component.d.ts +0 -11
  21. package/lib/cauca-slideshow/cauca-slideshow.component.d.ts +0 -20
  22. package/lib/shared/models/menu-item.d.ts +0 -8
  23. package/lib/shared/models/simple-dialog-data.d.ts +0 -5
  24. package/lib/test-component-with-classic-input/test-component-with-classic-input.component.d.ts +0 -9
  25. package/lib/test-component-with-model-signal/test-component-with-model-signal.component.d.ts +0 -7
  26. package/lib/test-component-with-signal-input/test-component-with-signal-input.component.d.ts +0 -8
  27. package/public-api.d.ts +0 -14
@@ -1,9 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class TestComponentWithClassicInputComponent {
4
- value: string;
5
- valueChange: EventEmitter<string>;
6
- changeValue(value: string): void;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<TestComponentWithClassicInputComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<TestComponentWithClassicInputComponent, "cauca-test-component-with-classic-input", never, { "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
9
- }
@@ -1,7 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class TestComponentWithModelSignalComponent {
3
- value: import("@angular/core").ModelSignal<string>;
4
- changeValue(value: string): void;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<TestComponentWithModelSignalComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<TestComponentWithModelSignalComponent, "cauca-test-component-with-model-signal", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
7
- }
@@ -1,8 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class TestComponentWithSignalInputComponent {
3
- value: import("@angular/core").InputSignal<string>;
4
- valueChange: import("@angular/core").OutputEmitterRef<string>;
5
- changeValue(value: string): void;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<TestComponentWithSignalInputComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<TestComponentWithSignalInputComponent, "cauca-test-component-with-signal-input", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
8
- }
package/public-api.d.ts DELETED
@@ -1,14 +0,0 @@
1
- export * from './lib/cauca-material.service';
2
- export * from './lib/cauca-material.component';
3
- export * from './lib/cauca-material.module';
4
- export * from './lib/cauca-date-time-picker/cauca-date-time-picker.component';
5
- export * from './lib/cauca-input-file/cauca-input-file.component';
6
- export * from './lib/cauca-input-multiple-langue/cauca-input-multiple-langue.component';
7
- export * from './lib/cauca-menu-sidebar/cauca-menu-sidebar.component';
8
- export * from './lib/cauca-menu-vertical/cauca-menu-vertical.component';
9
- export * from './lib/cauca-simple-dialog/cauca-simple-dialog.component';
10
- export * from './lib/cauca-slideshow/cauca-slideshow.component';
11
- export { TestComponentWithClassicInputComponent } from './lib/test-component-with-classic-input/test-component-with-classic-input.component';
12
- export { TestComponentWithModelSignalComponent } from './lib/test-component-with-model-signal/test-component-with-model-signal.component';
13
- export { TestComponentWithSignalInputComponent } from './lib/test-component-with-signal-input/test-component-with-signal-input.component';
14
- export { MenuItem } from './lib/shared/models/menu-item';