@stonecrop/aform 0.2.24 → 0.2.26
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/dist/aform/src/tsdoc-metadata.json +11 -0
- package/dist/aform.d.ts +55 -0
- package/dist/aform.js +477 -354
- package/dist/aform.js.map +1 -1
- package/dist/aform.tsbuildinfo +1 -0
- package/dist/aform.umd.cjs +1 -1
- package/dist/aform.umd.cjs.map +1 -1
- package/dist/directives/mask.js +88 -0
- package/dist/index.js +31 -0
- package/dist/src/directives/mask.d.ts +3 -0
- package/dist/src/directives/mask.d.ts.map +1 -0
- package/dist/src/index.d.ts +20 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/types/index.d.ts +27 -0
- package/dist/src/types/index.d.ts.map +1 -0
- package/dist/style.css +1 -1
- package/dist/types/index.js +0 -0
- package/package.json +24 -27
- package/src/components/AForm.vue +2 -1
- package/src/components/form/ACheckbox.vue +7 -1
- package/src/components/form/ADropdown.vue +1 -1
- package/src/components/form/AFieldset.vue +1 -1
- package/src/components/form/ANumericInput.vue +7 -1
- package/src/components/form/ATextInput.vue +2 -2
- package/src/directives/mask.ts +2 -1
- package/src/index.ts +20 -1
- package/src/theme/aform.css +1 -1
- package/src/theme/fields.css +34 -35
- package/src/theme/login.css +0 -2
- package/src/types/index.ts +31 -0
- package/src/histoire.setup.ts +0 -26
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// This file is read by tools that parse documentation comments conforming to the TSDoc standard.
|
|
2
|
+
// It should be published with your NPM package. It should not be tracked by Git.
|
|
3
|
+
{
|
|
4
|
+
"tsdocVersion": "0.12",
|
|
5
|
+
"toolPackages": [
|
|
6
|
+
{
|
|
7
|
+
"packageName": "@microsoft/api-extractor",
|
|
8
|
+
"packageVersion": "7.47.0"
|
|
9
|
+
}
|
|
10
|
+
]
|
|
11
|
+
}
|
package/dist/aform.d.ts
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import ACheckbox from '@/components/form/ACheckbox.vue';
|
|
2
|
+
import AComboBox from '@/components/form/AComboBox.vue';
|
|
3
|
+
import ADate from '@/components/form/ADate.vue';
|
|
4
|
+
import ADatePicker from '@/components/form/ADatePicker.vue';
|
|
5
|
+
import ADropdown from '@/components/form/ADropdown.vue';
|
|
6
|
+
import AFieldset from '@/components/form/AFieldset.vue';
|
|
7
|
+
import AForm from '@/components/AForm.vue';
|
|
8
|
+
import ANumericInput from '@/components/form/ANumericInput.vue';
|
|
9
|
+
import { App } from 'vue';
|
|
10
|
+
import ATextInput from '@/components/form/ATextInput.vue';
|
|
11
|
+
import { BasicSchema } from '@/types';
|
|
12
|
+
import { FieldsetSchema } from '@/types';
|
|
13
|
+
import { FormSchema } from '@/types';
|
|
14
|
+
import Login from '@/components/utilities/Login.vue';
|
|
15
|
+
import { SchemaTypes } from '@/types';
|
|
16
|
+
import { TableSchema } from '@/types';
|
|
17
|
+
|
|
18
|
+
export { ACheckbox }
|
|
19
|
+
|
|
20
|
+
export { AComboBox }
|
|
21
|
+
|
|
22
|
+
export { ADate }
|
|
23
|
+
|
|
24
|
+
export { ADatePicker }
|
|
25
|
+
|
|
26
|
+
export { ADropdown }
|
|
27
|
+
|
|
28
|
+
export { AFieldset }
|
|
29
|
+
|
|
30
|
+
export { AForm }
|
|
31
|
+
|
|
32
|
+
export { ANumericInput }
|
|
33
|
+
|
|
34
|
+
export { ATextInput }
|
|
35
|
+
|
|
36
|
+
export { BasicSchema }
|
|
37
|
+
|
|
38
|
+
export { FieldsetSchema }
|
|
39
|
+
|
|
40
|
+
export { FormSchema }
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Install all AForm components
|
|
44
|
+
* @param app - Vue app instance
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
export declare function install(app: App): void;
|
|
48
|
+
|
|
49
|
+
export { Login }
|
|
50
|
+
|
|
51
|
+
export { SchemaTypes }
|
|
52
|
+
|
|
53
|
+
export { TableSchema }
|
|
54
|
+
|
|
55
|
+
export { }
|