@ndwnu/design-system 0.0.1-beta.1 → 1.0.1

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 (90) hide show
  1. package/README.md +3 -136
  2. package/assets/icons/icons.json +830 -46
  3. package/assets/images/ndw-logo-short.svg +1 -1
  4. package/assets/images/nwb-logo-short.svg +10 -0
  5. package/assets/images/nwb-logo.svg +3 -10
  6. package/components/collapsible/collapsible.animation.d.ts +1 -0
  7. package/components/collapsible/collapsible.component.d.ts +1 -0
  8. package/components/dropdown/dropdown-trigger.directive.d.ts +23 -0
  9. package/components/dropdown/dropdown.component.d.ts +6 -17
  10. package/components/dropdown/index.d.ts +1 -0
  11. package/components/form-field/checkbox/checkbox.component.d.ts +23 -0
  12. package/components/form-field/checkbox/index.d.ts +1 -0
  13. package/components/form-field/checkbox-group/checkbox-group.component.d.ts +5 -0
  14. package/components/form-field/checkbox-group/index.d.ts +1 -0
  15. package/components/form-field/form-field.component.d.ts +12 -8
  16. package/components/form-field/form-field.model.d.ts +1 -0
  17. package/components/form-field/index.d.ts +7 -0
  18. package/components/form-field/radio-button/index.d.ts +1 -0
  19. package/components/form-field/radio-button/radio-button.component.d.ts +22 -0
  20. package/components/form-field/radio-group/index.d.ts +1 -0
  21. package/components/form-field/radio-group/radio-group.component.d.ts +11 -0
  22. package/components/icon/icon.component.d.ts +2 -5
  23. package/components/index.d.ts +4 -4
  24. package/components/main-navigation/main-navigation.component.d.ts +18 -9
  25. package/components/main-navigation-menu/main-navigation-menu.component.d.ts +2 -4
  26. package/components/modal/index.d.ts +1 -0
  27. package/components/modal/modal-trigger.directive.d.ts +20 -0
  28. package/components/pill/index.d.ts +2 -0
  29. package/components/pill/pill.component.d.ts +8 -0
  30. package/components/pill/pill.model.d.ts +8 -0
  31. package/core/styles/ndw-styles.scss +48 -116
  32. package/core/styles/nwb-styles.scss +48 -116
  33. package/esm2022/components/accordion/accordion.component.mjs +4 -4
  34. package/esm2022/components/accordion/accordion.service.mjs +5 -5
  35. package/esm2022/components/badge/badge.component.mjs +5 -5
  36. package/esm2022/components/button/button.directive.mjs +3 -3
  37. package/esm2022/components/card/card.component.mjs +5 -5
  38. package/esm2022/components/collapsible/collapsible.animation.mjs +36 -0
  39. package/esm2022/components/collapsible/collapsible.component.mjs +9 -11
  40. package/esm2022/components/dropdown/dropdown-trigger.directive.mjs +99 -0
  41. package/esm2022/components/dropdown/dropdown.component.mjs +12 -67
  42. package/esm2022/components/dropdown/index.mjs +2 -1
  43. package/esm2022/components/form-field/checkbox/checkbox.component.mjs +91 -0
  44. package/esm2022/components/form-field/checkbox/index.mjs +2 -0
  45. package/esm2022/components/form-field/checkbox-group/checkbox-group.component.mjs +11 -0
  46. package/esm2022/components/form-field/checkbox-group/index.mjs +2 -0
  47. package/esm2022/components/form-field/error/error.component.mjs +12 -0
  48. package/esm2022/components/form-field/error/index.mjs +2 -0
  49. package/esm2022/components/form-field/form-field.component.mjs +69 -46
  50. package/esm2022/components/form-field/form-field.model.mjs +2 -1
  51. package/esm2022/components/form-field/index.mjs +8 -1
  52. package/esm2022/components/form-field/info/index.mjs +2 -0
  53. package/esm2022/components/{info → form-field/info}/info.component.mjs +4 -4
  54. package/esm2022/components/form-field/input/index.mjs +3 -0
  55. package/esm2022/components/form-field/input/input.directive.mjs +36 -0
  56. package/esm2022/components/form-field/input/input.model.mjs +13 -0
  57. package/esm2022/components/form-field/radio-button/index.mjs +2 -0
  58. package/esm2022/components/form-field/radio-button/radio-button.component.mjs +81 -0
  59. package/esm2022/components/form-field/radio-group/index.mjs +2 -0
  60. package/esm2022/components/form-field/radio-group/radio-group.component.mjs +34 -0
  61. package/esm2022/components/icon/icon.component.mjs +14 -22
  62. package/esm2022/components/icon/icon.service.mjs +5 -5
  63. package/esm2022/components/index.mjs +5 -5
  64. package/esm2022/components/main-navigation/main-navigation.component.mjs +52 -17
  65. package/esm2022/components/main-navigation-menu/main-navigation-menu.component.mjs +7 -15
  66. package/esm2022/components/modal/index.mjs +2 -0
  67. package/esm2022/components/modal/modal-trigger.directive.mjs +77 -0
  68. package/esm2022/components/pill/index.mjs +3 -0
  69. package/esm2022/components/pill/pill.component.mjs +20 -0
  70. package/esm2022/components/pill/pill.model.mjs +2 -0
  71. package/esm2022/components/tab/tab.component.mjs +5 -5
  72. package/esm2022/components/tab-group/tab-group.component.mjs +5 -5
  73. package/esm2022/components/tooltip/tooltip.component.mjs +5 -5
  74. package/esm2022/components/tooltip/tooltip.directive.mjs +7 -6
  75. package/fesm2022/ndwnu-design-system.mjs +647 -242
  76. package/fesm2022/ndwnu-design-system.mjs.map +1 -1
  77. package/package.json +5 -4
  78. package/esm2022/components/error/error.component.mjs +0 -14
  79. package/esm2022/components/error/index.mjs +0 -2
  80. package/esm2022/components/info/index.mjs +0 -2
  81. package/esm2022/components/input/index.mjs +0 -3
  82. package/esm2022/components/input/input.directive.mjs +0 -36
  83. package/esm2022/components/input/input.model.mjs +0 -13
  84. /package/components/{error → form-field/error}/error.component.d.ts +0 -0
  85. /package/components/{error → form-field/error}/index.d.ts +0 -0
  86. /package/components/{info → form-field/info}/index.d.ts +0 -0
  87. /package/components/{info → form-field/info}/info.component.d.ts +0 -0
  88. /package/components/{input → form-field/input}/index.d.ts +0 -0
  89. /package/components/{input → form-field/input}/input.directive.d.ts +0 -0
  90. /package/components/{input → form-field/input}/input.model.d.ts +0 -0
@@ -3,14 +3,14 @@ export * from './badge';
3
3
  export * from './button';
4
4
  export * from './card';
5
5
  export * from './collapsible';
6
- export * from './error';
6
+ export * from './dropdown';
7
7
  export * from './form-field';
8
8
  export * from './icon';
9
- export * from './info';
10
- export * from './input';
11
9
  export * from './main-navigation';
12
- export * from './tooltip';
10
+ export * from './pill';
13
11
  export * from './tab';
14
12
  export * from './tab-group';
13
+ export * from './tooltip';
15
14
  export * from './dropdown';
16
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9uZHcvc3JjL2NvbXBvbmVudHMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxhQUFhLENBQUM7QUFDNUIsY0FBYyxTQUFTLENBQUM7QUFDeEIsY0FBYyxVQUFVLENBQUM7QUFDekIsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxlQUFlLENBQUM7QUFDOUIsY0FBYyxTQUFTLENBQUM7QUFDeEIsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxTQUFTLENBQUM7QUFDeEIsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLFdBQVcsQ0FBQztBQUMxQixjQUFjLE9BQU8sQ0FBQztBQUN0QixjQUFjLGFBQWEsQ0FBQztBQUM1QixjQUFjLFlBQVksQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vYWNjb3JkaW9uJztcbmV4cG9ydCAqIGZyb20gJy4vYmFkZ2UnO1xuZXhwb3J0ICogZnJvbSAnLi9idXR0b24nO1xuZXhwb3J0ICogZnJvbSAnLi9jYXJkJztcbmV4cG9ydCAqIGZyb20gJy4vY29sbGFwc2libGUnO1xuZXhwb3J0ICogZnJvbSAnLi9lcnJvcic7XG5leHBvcnQgKiBmcm9tICcuL2Zvcm0tZmllbGQnO1xuZXhwb3J0ICogZnJvbSAnLi9pY29uJztcbmV4cG9ydCAqIGZyb20gJy4vaW5mbyc7XG5leHBvcnQgKiBmcm9tICcuL2lucHV0JztcbmV4cG9ydCAqIGZyb20gJy4vbWFpbi1uYXZpZ2F0aW9uJztcbmV4cG9ydCAqIGZyb20gJy4vdG9vbHRpcCc7XG5leHBvcnQgKiBmcm9tICcuL3RhYic7XG5leHBvcnQgKiBmcm9tICcuL3RhYi1ncm91cCc7XG5leHBvcnQgKiBmcm9tICcuL2Ryb3Bkb3duJztcblxuIl19
15
+ export * from './modal';
16
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9uZHcvc3JjL2NvbXBvbmVudHMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxhQUFhLENBQUM7QUFDNUIsY0FBYyxTQUFTLENBQUM7QUFDeEIsY0FBYyxVQUFVLENBQUM7QUFDekIsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxlQUFlLENBQUM7QUFDOUIsY0FBYyxZQUFZLENBQUM7QUFDM0IsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLFFBQVEsQ0FBQztBQUN2QixjQUFjLE9BQU8sQ0FBQztBQUN0QixjQUFjLGFBQWEsQ0FBQztBQUM1QixjQUFjLFdBQVcsQ0FBQztBQUMxQixjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLFNBQVMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vYWNjb3JkaW9uJztcbmV4cG9ydCAqIGZyb20gJy4vYmFkZ2UnO1xuZXhwb3J0ICogZnJvbSAnLi9idXR0b24nO1xuZXhwb3J0ICogZnJvbSAnLi9jYXJkJztcbmV4cG9ydCAqIGZyb20gJy4vY29sbGFwc2libGUnO1xuZXhwb3J0ICogZnJvbSAnLi9kcm9wZG93bic7XG5leHBvcnQgKiBmcm9tICcuL2Zvcm0tZmllbGQnO1xuZXhwb3J0ICogZnJvbSAnLi9pY29uJztcbmV4cG9ydCAqIGZyb20gJy4vbWFpbi1uYXZpZ2F0aW9uJztcbmV4cG9ydCAqIGZyb20gJy4vcGlsbCc7XG5leHBvcnQgKiBmcm9tICcuL3RhYic7XG5leHBvcnQgKiBmcm9tICcuL3RhYi1ncm91cCc7XG5leHBvcnQgKiBmcm9tICcuL3Rvb2x0aXAnO1xuZXhwb3J0ICogZnJvbSAnLi9kcm9wZG93bic7XG5leHBvcnQgKiBmcm9tICcuL21vZGFsJztcbiJdfQ==