layers-design-system 2.6.7 → 2.6.9
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/components/LIcon/index.vue.d.ts +2 -0
- package/dist/components/LNotification/index.vue.d.ts +2 -0
- package/dist/helpers/Colors.d.ts +6 -0
- package/dist/helpers/FieldTypeComponents.d.ts +10 -0
- package/dist/helpers/Icons.d.ts +4 -0
- package/dist/helpers/Notification.d.ts +6 -0
- package/dist/helpers/RegisterElementUIComponents.d.ts +4 -0
- package/dist/helpers/Schemas.d.ts +4 -0
- package/dist/helpers/util.d.ts +1 -0
- package/dist/layers-design-system.js +82776 -0
- package/dist/layers-design-system.umd.cjs +321 -0
- package/dist/main.d.ts +6 -0
- package/dist/style.css +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export namespace FieldTypeComponents {
|
|
2
|
+
export { getComponent as get };
|
|
3
|
+
export { registerComponent as register };
|
|
4
|
+
}
|
|
5
|
+
export default Plugin;
|
|
6
|
+
declare function getComponent(fieldSchema: any, componentType: any): any;
|
|
7
|
+
declare function registerComponent(fieldSchema: any, componentType: any, component: any): void;
|
|
8
|
+
declare namespace Plugin {
|
|
9
|
+
function install(Vue: any): void;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export function buildFieldKeys(fieldSchema: any): string[];
|