@siemens/ix-angular 1.0.0-beta.4 → 1.0.0-beta.5

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 (50) hide show
  1. package/angular-component-lib/utils.d.ts +9 -0
  2. package/app-initialize.d.ts +1 -0
  3. package/components.d.ts +767 -0
  4. package/declare-components.d.ts +2 -0
  5. package/esm2020/angular-component-lib/utils.mjs +53 -0
  6. package/esm2020/app-initialize.mjs +25 -0
  7. package/esm2020/components.mjs +1619 -0
  8. package/esm2020/declare-components.mjs +67 -0
  9. package/esm2020/index.mjs +15 -0
  10. package/esm2020/modal/index.mjs +10 -0
  11. package/esm2020/modal/modal.config.mjs +10 -0
  12. package/esm2020/modal/modal.service.mjs +51 -0
  13. package/esm2020/module.mjs +47 -0
  14. package/esm2020/siemens-ix-angular.mjs +5 -0
  15. package/esm2020/toast/index.mjs +10 -0
  16. package/esm2020/toast/toast.config.mjs +10 -0
  17. package/esm2020/toast/toast.service.mjs +46 -0
  18. package/esm2020/tree/index.mjs +10 -0
  19. package/esm2020/tree/tree.mjs +81 -0
  20. package/fesm2015/siemens-ix-angular.mjs +1925 -0
  21. package/fesm2015/siemens-ix-angular.mjs.map +1 -0
  22. package/fesm2020/siemens-ix-angular.mjs +1938 -0
  23. package/fesm2020/siemens-ix-angular.mjs.map +1 -0
  24. package/index.d.ts +6 -0
  25. package/modal/index.d.ts +1 -0
  26. package/modal/modal.config.d.ts +4 -0
  27. package/modal/modal.service.d.ts +12 -0
  28. package/module.d.ts +10 -0
  29. package/package.json +25 -18
  30. package/toast/index.d.ts +1 -0
  31. package/toast/toast.config.d.ts +5 -0
  32. package/toast/toast.service.d.ts +10 -0
  33. package/tree/index.d.ts +1 -0
  34. package/tree/tree.d.ts +26 -0
  35. package/ng-package.json +0 -9
  36. package/src/angular-component-lib/utils.ts +0 -63
  37. package/src/app-initialize.ts +0 -29
  38. package/src/components.ts +0 -1631
  39. package/src/declare-components.ts +0 -68
  40. package/src/index.ts +0 -16
  41. package/src/modal/index.ts +0 -10
  42. package/src/modal/modal.config.ts +0 -14
  43. package/src/modal/modal.service.ts +0 -64
  44. package/src/module.ts +0 -44
  45. package/src/toast/index.ts +0 -10
  46. package/src/toast/toast.config.ts +0 -15
  47. package/src/toast/toast.service.ts +0 -51
  48. package/src/tree/index.ts +0 -10
  49. package/src/tree/tree.ts +0 -124
  50. package/tsconfig.json +0 -43
@@ -0,0 +1,9 @@
1
+ export declare const proxyInputs: (Cmp: any, inputs: string[]) => void;
2
+ export declare const proxyMethods: (Cmp: any, methods: string[]) => void;
3
+ export declare const proxyOutputs: (instance: any, el: any, events: string[]) => void;
4
+ export declare const defineCustomElement: (tagName: string, customElement: any) => void;
5
+ export declare function ProxyCmp(opts: {
6
+ defineCustomElementFn?: () => void;
7
+ inputs?: any;
8
+ methods?: any;
9
+ }): (cls: any) => any;
@@ -0,0 +1 @@
1
+ export declare const appInitialize: (doc: Document) => () => void;