@ng-formworks/material 17.2.7 → 18.0.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 (96) hide show
  1. package/LICENSE +21 -0
  2. package/assets/material-design-themes.scss +34 -16
  3. package/esm2022/lib/material-design-cssframework.mjs +23 -0
  4. package/esm2022/lib/material-design-framework.component.mjs +119 -0
  5. package/esm2022/lib/material-design-framework.module.mjs +117 -0
  6. package/esm2022/lib/material-design.framework.mjs +61 -0
  7. package/esm2022/lib/widgets/flex-layout-root.component.mjs +75 -0
  8. package/esm2022/lib/widgets/flex-layout-section.component.mjs +347 -0
  9. package/esm2022/lib/widgets/material-add-reference.component.mjs +66 -0
  10. package/esm2022/lib/widgets/material-button-group.component.mjs +90 -0
  11. package/esm2022/lib/widgets/material-button.component.mjs +80 -0
  12. package/esm2022/lib/widgets/material-checkbox.component.mjs +166 -0
  13. package/esm2022/lib/widgets/material-checkboxes.component.mjs +129 -0
  14. package/esm2022/lib/widgets/material-chip-list.component.mjs +35 -0
  15. package/esm2022/lib/widgets/material-datepicker.component.mjs +141 -0
  16. package/esm2022/lib/widgets/material-file.component.mjs +35 -0
  17. package/esm2022/lib/widgets/material-input.component.mjs +149 -0
  18. package/esm2022/lib/widgets/material-number.component.mjs +145 -0
  19. package/esm2022/lib/widgets/material-one-of.component.mjs +35 -0
  20. package/esm2022/lib/widgets/material-radios.component.mjs +122 -0
  21. package/esm2022/lib/widgets/material-select.component.mjs +186 -0
  22. package/esm2022/lib/widgets/material-slider.component.mjs +91 -0
  23. package/esm2022/lib/widgets/material-stepper.component.mjs +35 -0
  24. package/esm2022/lib/widgets/material-tabs.component.mjs +92 -0
  25. package/esm2022/lib/widgets/material-textarea.component.mjs +134 -0
  26. package/esm2022/lib/widgets/public_api.mjs +52 -0
  27. package/esm2022/ng-formworks-material.mjs +5 -0
  28. package/esm2022/public_api.mjs +8 -0
  29. package/fesm2022/ng-formworks-material.mjs +2357 -0
  30. package/fesm2022/ng-formworks-material.mjs.map +1 -0
  31. package/index.d.ts +5 -0
  32. package/lib/material-design-cssframework.d.ts +1 -0
  33. package/lib/material-design-framework.component.d.ts +35 -0
  34. package/lib/material-design-framework.module.d.ts +61 -0
  35. package/lib/material-design.framework.d.ts +46 -0
  36. package/lib/widgets/flex-layout-root.component.d.ts +15 -0
  37. package/lib/widgets/flex-layout-section.component.d.ts +25 -0
  38. package/lib/widgets/material-add-reference.component.d.ts +20 -0
  39. package/lib/widgets/material-button-group.component.d.ts +23 -0
  40. package/lib/widgets/material-button.component.d.ts +24 -0
  41. package/lib/widgets/material-checkbox.component.d.ts +25 -0
  42. package/lib/widgets/material-checkboxes.component.d.ts +27 -0
  43. package/lib/widgets/material-chip-list.component.d.ts +21 -0
  44. package/lib/widgets/material-datepicker.component.d.ts +22 -0
  45. package/lib/widgets/material-file.component.d.ts +21 -0
  46. package/lib/widgets/material-input.component.d.ts +23 -0
  47. package/lib/widgets/material-number.component.d.ts +26 -0
  48. package/lib/widgets/material-one-of.component.d.ts +21 -0
  49. package/lib/widgets/material-radios.component.d.ts +23 -0
  50. package/lib/widgets/material-select.component.d.ts +24 -0
  51. package/lib/widgets/material-slider.component.d.ts +25 -0
  52. package/lib/widgets/material-stepper.component.d.ts +21 -0
  53. package/lib/widgets/material-tabs.component.d.ts +20 -0
  54. package/lib/widgets/material-textarea.component.d.ts +22 -0
  55. package/{src/lib/widgets/public_api.ts → lib/widgets/public_api.d.ts} +41 -54
  56. package/package.json +64 -48
  57. package/{src/public_api.ts → public_api.d.ts} +4 -9
  58. package/karma.conf.js +0 -46
  59. package/ng-package.json +0 -13
  60. package/src/lib/flexlayout-replacement-styles.scss +0 -95
  61. package/src/lib/material-design-cssframework.ts +0 -20
  62. package/src/lib/material-design-framework.component.html +0 -13
  63. package/src/lib/material-design-framework.component.scss +0 -58
  64. package/src/lib/material-design-framework.component.spec.ts +0 -39
  65. package/src/lib/material-design-framework.component.ts +0 -143
  66. package/src/lib/material-design-framework.module.ts +0 -81
  67. package/src/lib/material-design-themes.scss +0 -71
  68. package/src/lib/material-design.framework.ts +0 -83
  69. package/src/lib/tailwind-output.scss +0 -622
  70. package/src/lib/widgets/flex-layout-root.component.html +0 -4
  71. package/src/lib/widgets/flex-layout-root.component.ts +0 -52
  72. package/src/lib/widgets/flex-layout-section.component.ts +0 -216
  73. package/src/lib/widgets/material-add-reference.component.ts +0 -56
  74. package/src/lib/widgets/material-button-group.component.ts +0 -68
  75. package/src/lib/widgets/material-button.component.ts +0 -66
  76. package/src/lib/widgets/material-checkbox.component.ts +0 -112
  77. package/src/lib/widgets/material-checkboxes.component.ts +0 -108
  78. package/src/lib/widgets/material-chip-list.component.ts +0 -35
  79. package/src/lib/widgets/material-datepicker.component.ts +0 -89
  80. package/src/lib/widgets/material-file.component.ts +0 -35
  81. package/src/lib/widgets/material-input.component.ts +0 -97
  82. package/src/lib/widgets/material-number.component.ts +0 -95
  83. package/src/lib/widgets/material-one-of.component.ts +0 -35
  84. package/src/lib/widgets/material-radios.component.ts +0 -91
  85. package/src/lib/widgets/material-select.component.ts +0 -118
  86. package/src/lib/widgets/material-slider.component.ts +0 -65
  87. package/src/lib/widgets/material-stepper.component.ts +0 -35
  88. package/src/lib/widgets/material-tabs.component.ts +0 -72
  89. package/src/lib/widgets/material-textarea.component.ts +0 -88
  90. package/src/test.ts +0 -17
  91. package/tailwind-input.css +0 -3
  92. package/tailwind.config.js +0 -12
  93. package/tsconfig.lib.json +0 -25
  94. package/tsconfig.lib.prod.json +0 -9
  95. package/tsconfig.spec.json +0 -17
  96. package/tslint.json +0 -11

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.