@ilhombek/base-form 0.0.2 → 0.0.4

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/fesm2022/ilhombek-base-form.mjs +640 -24
  2. package/fesm2022/ilhombek-base-form.mjs.map +1 -1
  3. package/lib/components/datepicker/datepicker.component.d.ts +20 -0
  4. package/lib/components/dynamic-form-field/dynamic-form-field.component.d.ts +15 -0
  5. package/lib/components/dynamic-form.component.d.ts +9 -0
  6. package/lib/components/multi-select/multi-select.component.d.ts +30 -0
  7. package/lib/components/password-input/password-input.component.d.ts +20 -0
  8. package/lib/components/select-input/select-input.component.d.ts +30 -0
  9. package/lib/components/text-input/text-input.component.d.ts +20 -0
  10. package/lib/components/text-input-number/number-input.component.d.ts +21 -0
  11. package/lib/components/textarea-input/textarea-input.component.d.ts +19 -0
  12. package/lib/components/time-picker/time-picker.component.d.ts +19 -0
  13. package/lib/core/dynamic-form/question-base.d.ts +17 -0
  14. package/lib/core/dynamic-form/question-datepicker.d.ts +11 -0
  15. package/lib/core/dynamic-form/question-multi-select.d.ts +16 -0
  16. package/lib/core/dynamic-form/question-password-input.d.ts +5 -0
  17. package/lib/core/dynamic-form/question-select-input.d.ts +34 -0
  18. package/lib/core/dynamic-form/question-text-input.d.ts +5 -0
  19. package/lib/core/dynamic-form/question-textarea.d.ts +5 -0
  20. package/lib/core/dynamic-form/question-time-picker.d.ts +12 -0
  21. package/lib/core/enums/async-option.enum.d.ts +9 -0
  22. package/lib/core/enums/option-type.enum.d.ts +4 -0
  23. package/lib/core/enums/question-type.enum.d.ts +13 -0
  24. package/lib/core/models/question-base.d.ts +26 -0
  25. package/lib/services/question-control.service.d.ts +9 -0
  26. package/package.json +1 -1
  27. package/public-api.d.ts +23 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ilhombek/base-form",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.0",
6
6
  "@angular/core": "^19.2.0"
package/public-api.d.ts CHANGED
@@ -1,2 +1,23 @@
1
- export * from './lib/base-form.service';
2
- export * from './lib/base-form.component';
1
+ export * from './lib/components/dynamic-form.component';
2
+ export * from './lib/components/datepicker/datepicker.component';
3
+ export * from './lib/components/dynamic-form-field/dynamic-form-field.component';
4
+ export * from './lib/components/multi-select/multi-select.component';
5
+ export * from './lib/components/password-input/password-input.component';
6
+ export * from './lib/components/select-input/select-input.component';
7
+ export * from './lib/components/text-input/text-input.component';
8
+ export * from './lib/components/text-input-number/number-input.component';
9
+ export * from './lib/components/textarea-input/textarea-input.component';
10
+ export * from './lib/components/time-picker/time-picker.component';
11
+ export * from './lib/core/dynamic-form/question-base';
12
+ export * from './lib/core/dynamic-form/question-datepicker';
13
+ export * from './lib/core/dynamic-form/question-multi-select';
14
+ export * from './lib/core/dynamic-form/question-password-input';
15
+ export * from './lib/core/dynamic-form/question-select-input';
16
+ export * from './lib/core/dynamic-form/question-text-input';
17
+ export * from './lib/core/dynamic-form/question-textarea';
18
+ export * from './lib/core/dynamic-form/question-time-picker';
19
+ export * from './lib/core/enums/question-type.enum';
20
+ export * from './lib/core/enums/option-type.enum';
21
+ export * from './lib/core/enums/async-option.enum';
22
+ export * from './lib/core/models/question-base';
23
+ export * from './lib/services/question-control.service';