@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.
- package/README.md +3 -136
- package/assets/icons/icons.json +830 -46
- package/assets/images/ndw-logo-short.svg +1 -1
- package/assets/images/nwb-logo-short.svg +10 -0
- package/assets/images/nwb-logo.svg +3 -10
- package/components/collapsible/collapsible.animation.d.ts +1 -0
- package/components/collapsible/collapsible.component.d.ts +1 -0
- package/components/dropdown/dropdown-trigger.directive.d.ts +23 -0
- package/components/dropdown/dropdown.component.d.ts +6 -17
- package/components/dropdown/index.d.ts +1 -0
- package/components/form-field/checkbox/checkbox.component.d.ts +23 -0
- package/components/form-field/checkbox/index.d.ts +1 -0
- package/components/form-field/checkbox-group/checkbox-group.component.d.ts +5 -0
- package/components/form-field/checkbox-group/index.d.ts +1 -0
- package/components/form-field/form-field.component.d.ts +12 -8
- package/components/form-field/form-field.model.d.ts +1 -0
- package/components/form-field/index.d.ts +7 -0
- package/components/form-field/radio-button/index.d.ts +1 -0
- package/components/form-field/radio-button/radio-button.component.d.ts +22 -0
- package/components/form-field/radio-group/index.d.ts +1 -0
- package/components/form-field/radio-group/radio-group.component.d.ts +11 -0
- package/components/icon/icon.component.d.ts +2 -5
- package/components/index.d.ts +4 -4
- package/components/main-navigation/main-navigation.component.d.ts +18 -9
- package/components/main-navigation-menu/main-navigation-menu.component.d.ts +2 -4
- package/components/modal/index.d.ts +1 -0
- package/components/modal/modal-trigger.directive.d.ts +20 -0
- package/components/pill/index.d.ts +2 -0
- package/components/pill/pill.component.d.ts +8 -0
- package/components/pill/pill.model.d.ts +8 -0
- package/core/styles/ndw-styles.scss +48 -116
- package/core/styles/nwb-styles.scss +48 -116
- package/esm2022/components/accordion/accordion.component.mjs +4 -4
- package/esm2022/components/accordion/accordion.service.mjs +5 -5
- package/esm2022/components/badge/badge.component.mjs +5 -5
- package/esm2022/components/button/button.directive.mjs +3 -3
- package/esm2022/components/card/card.component.mjs +5 -5
- package/esm2022/components/collapsible/collapsible.animation.mjs +36 -0
- package/esm2022/components/collapsible/collapsible.component.mjs +9 -11
- package/esm2022/components/dropdown/dropdown-trigger.directive.mjs +99 -0
- package/esm2022/components/dropdown/dropdown.component.mjs +12 -67
- package/esm2022/components/dropdown/index.mjs +2 -1
- package/esm2022/components/form-field/checkbox/checkbox.component.mjs +91 -0
- package/esm2022/components/form-field/checkbox/index.mjs +2 -0
- package/esm2022/components/form-field/checkbox-group/checkbox-group.component.mjs +11 -0
- package/esm2022/components/form-field/checkbox-group/index.mjs +2 -0
- package/esm2022/components/form-field/error/error.component.mjs +12 -0
- package/esm2022/components/form-field/error/index.mjs +2 -0
- package/esm2022/components/form-field/form-field.component.mjs +69 -46
- package/esm2022/components/form-field/form-field.model.mjs +2 -1
- package/esm2022/components/form-field/index.mjs +8 -1
- package/esm2022/components/form-field/info/index.mjs +2 -0
- package/esm2022/components/{info → form-field/info}/info.component.mjs +4 -4
- package/esm2022/components/form-field/input/index.mjs +3 -0
- package/esm2022/components/form-field/input/input.directive.mjs +36 -0
- package/esm2022/components/form-field/input/input.model.mjs +13 -0
- package/esm2022/components/form-field/radio-button/index.mjs +2 -0
- package/esm2022/components/form-field/radio-button/radio-button.component.mjs +81 -0
- package/esm2022/components/form-field/radio-group/index.mjs +2 -0
- package/esm2022/components/form-field/radio-group/radio-group.component.mjs +34 -0
- package/esm2022/components/icon/icon.component.mjs +14 -22
- package/esm2022/components/icon/icon.service.mjs +5 -5
- package/esm2022/components/index.mjs +5 -5
- package/esm2022/components/main-navigation/main-navigation.component.mjs +52 -17
- package/esm2022/components/main-navigation-menu/main-navigation-menu.component.mjs +7 -15
- package/esm2022/components/modal/index.mjs +2 -0
- package/esm2022/components/modal/modal-trigger.directive.mjs +77 -0
- package/esm2022/components/pill/index.mjs +3 -0
- package/esm2022/components/pill/pill.component.mjs +20 -0
- package/esm2022/components/pill/pill.model.mjs +2 -0
- package/esm2022/components/tab/tab.component.mjs +5 -5
- package/esm2022/components/tab-group/tab-group.component.mjs +5 -5
- package/esm2022/components/tooltip/tooltip.component.mjs +5 -5
- package/esm2022/components/tooltip/tooltip.directive.mjs +7 -6
- package/fesm2022/ndwnu-design-system.mjs +647 -242
- package/fesm2022/ndwnu-design-system.mjs.map +1 -1
- package/package.json +5 -4
- package/esm2022/components/error/error.component.mjs +0 -14
- package/esm2022/components/error/index.mjs +0 -2
- package/esm2022/components/info/index.mjs +0 -2
- package/esm2022/components/input/index.mjs +0 -3
- package/esm2022/components/input/input.directive.mjs +0 -36
- package/esm2022/components/input/input.model.mjs +0 -13
- /package/components/{error → form-field/error}/error.component.d.ts +0 -0
- /package/components/{error → form-field/error}/index.d.ts +0 -0
- /package/components/{info → form-field/info}/index.d.ts +0 -0
- /package/components/{info → form-field/info}/info.component.d.ts +0 -0
- /package/components/{input → form-field/input}/index.d.ts +0 -0
- /package/components/{input → form-field/input}/input.directive.d.ts +0 -0
- /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 './
|
|
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 './
|
|
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
|
-
|
|
15
|
+
export * from './modal';
|
|
16
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9uZHcvc3JjL2NvbXBvbmVudHMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxhQUFhLENBQUM7QUFDNUIsY0FBYyxTQUFTLENBQUM7QUFDeEIsY0FBYyxVQUFVLENBQUM7QUFDekIsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxlQUFlLENBQUM7QUFDOUIsY0FBYyxZQUFZLENBQUM7QUFDM0IsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLFFBQVEsQ0FBQztBQUN2QixjQUFjLE9BQU8sQ0FBQztBQUN0QixjQUFjLGFBQWEsQ0FBQztBQUM1QixjQUFjLFdBQVcsQ0FBQztBQUMxQixjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLFNBQVMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vYWNjb3JkaW9uJztcbmV4cG9ydCAqIGZyb20gJy4vYmFkZ2UnO1xuZXhwb3J0ICogZnJvbSAnLi9idXR0b24nO1xuZXhwb3J0ICogZnJvbSAnLi9jYXJkJztcbmV4cG9ydCAqIGZyb20gJy4vY29sbGFwc2libGUnO1xuZXhwb3J0ICogZnJvbSAnLi9kcm9wZG93bic7XG5leHBvcnQgKiBmcm9tICcuL2Zvcm0tZmllbGQnO1xuZXhwb3J0ICogZnJvbSAnLi9pY29uJztcbmV4cG9ydCAqIGZyb20gJy4vbWFpbi1uYXZpZ2F0aW9uJztcbmV4cG9ydCAqIGZyb20gJy4vcGlsbCc7XG5leHBvcnQgKiBmcm9tICcuL3RhYic7XG5leHBvcnQgKiBmcm9tICcuL3RhYi1ncm91cCc7XG5leHBvcnQgKiBmcm9tICcuL3Rvb2x0aXAnO1xuZXhwb3J0ICogZnJvbSAnLi9kcm9wZG93bic7XG5leHBvcnQgKiBmcm9tICcuL21vZGFsJztcbiJdfQ==
|