@ilhombek/base-form 0.0.2 → 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/fesm2022/ilhombek-base-form.mjs +640 -24
- package/fesm2022/ilhombek-base-form.mjs.map +1 -1
- package/lib/components/datepicker/datepicker.component.d.ts +20 -0
- package/lib/components/dynamic-form-field/dynamic-form-field.component.d.ts +15 -0
- package/lib/components/dynamic-form.component.d.ts +9 -0
- package/lib/components/multi-select/multi-select.component.d.ts +30 -0
- package/lib/components/password-input/password-input.component.d.ts +20 -0
- package/lib/components/select-input/select-input.component.d.ts +30 -0
- package/lib/components/text-input/text-input.component.d.ts +20 -0
- package/lib/components/text-input-number/number-input.component.d.ts +21 -0
- package/lib/components/textarea-input/textarea-input.component.d.ts +19 -0
- package/lib/components/time-picker/time-picker.component.d.ts +19 -0
- package/lib/core/dynamic-form/question-base.d.ts +17 -0
- package/lib/core/dynamic-form/question-datepicker.d.ts +11 -0
- package/lib/core/dynamic-form/question-multi-select.d.ts +16 -0
- package/lib/core/dynamic-form/question-password-input.d.ts +5 -0
- package/lib/core/dynamic-form/question-select-input.d.ts +34 -0
- package/lib/core/dynamic-form/question-text-input.d.ts +5 -0
- package/lib/core/dynamic-form/question-textarea.d.ts +5 -0
- package/lib/core/dynamic-form/question-time-picker.d.ts +12 -0
- package/lib/core/enums/async-option.enum.d.ts +9 -0
- package/lib/core/enums/option-type.enum.d.ts +4 -0
- package/lib/core/enums/question-type.enum.d.ts +13 -0
- package/lib/core/models/question-base.d.ts +26 -0
- package/lib/services/question-control.service.d.ts +9 -0
- package/package.json +1 -1
- package/public-api.d.ts +23 -2
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,2 +1,23 @@
|
|
|
1
|
-
export * from './lib/
|
|
2
|
-
export * from './lib/
|
|
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';
|