@ui5/webcomponents-base 1.11.0-rc.4 → 1.12.0-rc.0

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 (83) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist/Boot.d.ts +4 -3
  3. package/dist/Boot.js +13 -4
  4. package/dist/Boot.js.map +1 -1
  5. package/dist/UI5Element.d.ts +1 -7
  6. package/dist/UI5Element.js +7 -20
  7. package/dist/UI5Element.js.map +1 -1
  8. package/dist/api.json +1 -1
  9. package/dist/assets/Boot.6335ce08.css +1 -0
  10. package/dist/assets/Boot.6f2dd050.js +9 -0
  11. package/dist/assets/bundle.esm.5ddf1fb1.js +52 -0
  12. package/dist/assets/test/pages/Boot.html.3e0c3154.js +1 -0
  13. package/dist/assets/test/pages/i18n.html.95232fe8.js +1 -0
  14. package/dist/assets/test/pages/i18n_texts.html.351ef5df.js +1 -0
  15. package/dist/decorators/customElement.js +7 -7
  16. package/dist/decorators/customElement.js.map +1 -1
  17. package/dist/decorators/event.js +6 -6
  18. package/dist/decorators/event.js.map +1 -1
  19. package/dist/decorators/property.js +6 -6
  20. package/dist/decorators/property.js.map +1 -1
  21. package/dist/decorators/slot.js +7 -7
  22. package/dist/decorators/slot.js.map +1 -1
  23. package/dist/generated/VersionInfo.js +4 -4
  24. package/dist/test/pages/AllTestElements.html +2 -1
  25. package/dist/test/pages/Boot.html +17 -0
  26. package/dist/test/pages/Configuration.html +2 -1
  27. package/dist/test/pages/ConfigurationScript.html +2 -1
  28. package/dist/test/pages/WithComplexTemplate.html +2 -1
  29. package/dist/test/pages/i18n.html +3 -2
  30. package/dist/test/pages/i18n_texts.html +3 -2
  31. package/dist/types/AnimationMode.d.ts +1 -1
  32. package/dist/types/AnimationMode.js +1 -1
  33. package/dist/types/CSSColor.d.ts +0 -1
  34. package/dist/types/CSSColor.js +0 -1
  35. package/dist/types/CSSColor.js.map +1 -1
  36. package/dist/types/CalendarType.d.ts +1 -1
  37. package/dist/types/CalendarType.js +1 -1
  38. package/dist/types/Float.d.ts +0 -1
  39. package/dist/types/Float.js +0 -1
  40. package/dist/types/Float.js.map +1 -1
  41. package/dist/types/Integer.d.ts +0 -1
  42. package/dist/types/Integer.js +0 -1
  43. package/dist/types/Integer.js.map +1 -1
  44. package/dist/types/InvisibleMessageMode.d.ts +1 -1
  45. package/dist/types/InvisibleMessageMode.js +1 -1
  46. package/dist/types/ItemNavigationBehavior.d.ts +1 -1
  47. package/dist/types/ItemNavigationBehavior.js +1 -1
  48. package/dist/types/NavigationMode.d.ts +1 -1
  49. package/dist/types/NavigationMode.js +1 -1
  50. package/dist/types/ValueState.d.ts +1 -1
  51. package/dist/types/ValueState.js +1 -1
  52. package/dist/util/getClassCopy.d.ts +0 -1
  53. package/package.json +3 -3
  54. package/src/Boot.ts +16 -5
  55. package/src/UI5Element.ts +3 -19
  56. package/src/decorators/customElement.ts +7 -7
  57. package/src/decorators/event.ts +6 -6
  58. package/src/decorators/property.ts +6 -6
  59. package/src/decorators/slot.ts +7 -7
  60. package/src/types/AnimationMode.ts +1 -1
  61. package/src/types/CSSColor.ts +0 -1
  62. package/src/types/CalendarType.ts +1 -1
  63. package/src/types/Float.ts +0 -1
  64. package/src/types/Integer.ts +0 -1
  65. package/src/types/InvisibleMessageMode.ts +1 -1
  66. package/src/types/ItemNavigationBehavior.ts +1 -1
  67. package/src/types/NavigationMode.ts +1 -1
  68. package/src/types/ValueState.ts +1 -1
  69. package/dist/assets/bundle.esm.a2e827bf.js +0 -60
  70. package/dist/assets/test/pages/i18n.html.de9935e9.js +0 -1
  71. package/dist/assets/test/pages/i18n_texts.html.b70b7c6f.js +0 -1
  72. package/dist/decorators/fastNavigation.d.ts +0 -7
  73. package/dist/decorators/fastNavigation.js +0 -13
  74. package/dist/decorators/fastNavigation.js.map +0 -1
  75. package/dist/decorators/languageAware.d.ts +0 -7
  76. package/dist/decorators/languageAware.js +0 -13
  77. package/dist/decorators/languageAware.js.map +0 -1
  78. package/dist/decorators/themeAware.d.ts +0 -7
  79. package/dist/decorators/themeAware.js +0 -13
  80. package/dist/decorators/themeAware.js.map +0 -1
  81. package/src/decorators/fastNavigation.ts +0 -14
  82. package/src/decorators/languageAware.ts +0 -14
  83. package/src/decorators/themeAware.ts +0 -14
@@ -1,13 +0,0 @@
1
- /**
2
- * Class decorator, that sets the themeAware metadata.
3
- * @param { any } target the decorated class
4
- * @returns { void }
5
- */
6
- const themeAware = (target) => {
7
- if (!Object.prototype.hasOwnProperty.call(target, "decoratorMetadata")) {
8
- target.decoratorMetadata = {};
9
- }
10
- target.decoratorMetadata.themeAware = true;
11
- };
12
- export default themeAware;
13
- //# sourceMappingURL=themeAware.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"themeAware.js","sourceRoot":"","sources":["../../src/decorators/themeAware.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,MAAM,UAAU,GAAG,CAAC,MAAW,EAAQ,EAAE;IACxC,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,MAAM,EAAE,mBAAmB,CAAC,EAAE;QACvE,MAAM,CAAC,iBAAiB,GAAG,EAAE,CAAC;KAC9B;IAED,MAAM,CAAC,iBAAiB,CAAC,UAAU,GAAG,IAAI,CAAC;AAC5C,CAAC,CAAC;AAEF,eAAe,UAAU,CAAC"}
@@ -1,14 +0,0 @@
1
- /**
2
- * Class decorator, that sets the fastNavigation metadata.
3
- * @param { any } target the decorated class
4
- * @returns { void }
5
- */
6
- const fastNavigation = (target: any): void => {
7
- if (!Object.prototype.hasOwnProperty.call(target, "decoratorMetadata")) {
8
- target.decoratorMetadata = {};
9
- }
10
-
11
- target.decoratorMetadata.fastNavigation = true;
12
- };
13
-
14
- export default fastNavigation;
@@ -1,14 +0,0 @@
1
- /**
2
- * Class decorator, that sets the languageAware metadata.
3
- * @param { any } target the decorated class
4
- * @returns { void }
5
- */
6
- const languageAware = (target: any): void => {
7
- if (!Object.prototype.hasOwnProperty.call(target, "decoratorMetadata")) {
8
- target.decoratorMetadata = {};
9
- }
10
-
11
- target.decoratorMetadata.languageAware = true;
12
- };
13
-
14
- export default languageAware;
@@ -1,14 +0,0 @@
1
- /**
2
- * Class decorator, that sets the themeAware metadata.
3
- * @param { any } target the decorated class
4
- * @returns { void }
5
- */
6
- const themeAware = (target: any): void => {
7
- if (!Object.prototype.hasOwnProperty.call(target, "decoratorMetadata")) {
8
- target.decoratorMetadata = {};
9
- }
10
-
11
- target.decoratorMetadata.themeAware = true;
12
- };
13
-
14
- export default themeAware;