@steedos-widgets/amis-lib 0.0.3 → 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.
- package/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/index.cjs.js +248 -54
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +9 -0
- package/dist/index.esm.js +248 -54
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +508 -0
- package/dist/index.umd.min.js +508 -0
- package/dist/types/index.d.ts +9 -0
- package/dist/types/lib/assets.d.ts +1 -0
- package/dist/types/lib/buttons.d.ts +6 -4
- package/dist/types/lib/converter/amis/api.d.ts +1 -1
- package/dist/types/lib/converter/amis/fields/file.d.ts +57 -0
- package/dist/types/lib/converter/amis/fields/index.d.ts +6 -4
- package/dist/types/lib/converter/amis/fields/list.d.ts +22 -6
- package/dist/types/lib/converter/amis/fields/lookup.d.ts +11 -95
- package/dist/types/lib/converter/amis/fields/sections.d.ts +2 -1
- package/dist/types/lib/converter/amis/fields/table.d.ts +2 -2
- package/dist/types/lib/converter/amis/fields/type.d.ts +1 -0
- package/dist/types/lib/converter/amis/fields/user.d.ts +1 -0
- package/dist/types/lib/converter/amis/filters.d.ts +5 -0
- package/dist/types/lib/converter/amis/form.d.ts +2 -1
- package/dist/types/lib/converter/amis/graphql.d.ts +1 -0
- package/dist/types/lib/converter/amis/index.d.ts +94 -219
- package/dist/types/lib/converter/amis/tpl.d.ts +6 -3
- package/dist/types/lib/defaultsDeep.d.ts +1 -0
- package/dist/types/lib/objects.d.ts +193 -524
- package/dist/types/lib/page.d.ts +7 -1
- package/dist/types/lib/router.d.ts +4 -2
- package/dist/types/lib/space_users.d.ts +137 -0
- package/dist/types/lib/workflow/flow.d.ts +31 -0
- package/dist/types/schema/standard_delete.amis.d.ts +56 -0
- package/dist/types/schema/standard_edit.amis.d.ts +37 -0
- package/dist/types/schema/standard_import_data.amis.d.ts +251 -0
- package/dist/types/schema/standard_new.amis.d.ts +39 -0
- package/dist/types/standard/button.d.ts +400 -0
- package/dist/types/utils/keyToPath.d.ts +6 -0
- package/dist/types/utils/object.d.ts +14 -0
- package/dist/utils/keyToPath.d.ts +6 -0
- package/dist/utils/object.d.ts +14 -0
- package/package.json +3 -4
- package/dist/amis-lib.umd.js +0 -314
- package/dist/amis-lib.umd.min.js +0 -314
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,18 @@
|
|
|
1
|
+
export * from './lib/amis';
|
|
1
2
|
export * from './lib/objects';
|
|
2
3
|
export * from './lib/apps';
|
|
3
4
|
export * from './lib/buttons';
|
|
5
|
+
export * from './lib/defaultsDeep';
|
|
4
6
|
export * from './lib/expression';
|
|
5
7
|
export * from './lib/notification';
|
|
6
8
|
export * from './lib/page';
|
|
7
9
|
export * from './lib/public.env';
|
|
8
10
|
export * from './lib/record';
|
|
11
|
+
export * from './lib/space_users';
|
|
9
12
|
export * from './lib/steedos.client.js';
|
|
13
|
+
export * from './lib/converter/amis/fields/lookup';
|
|
14
|
+
export * from './lib/converter/amis/fields/user';
|
|
15
|
+
export * from './lib/converter/amis/filters';
|
|
16
|
+
export * from './lib/workflow/flow';
|
|
17
|
+
export * from './lib/assets';
|
|
18
|
+
export * from './utils/object';
|