matcha-components 1.0.2 → 1.0.6

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 (175) hide show
  1. package/README.md +236 -12
  2. package/assets/open_in_new.png +0 -0
  3. package/ng-package.json +7 -0
  4. package/package.json +10 -24
  5. package/src/foundation/colors/base/amber.mdx +232 -0
  6. package/src/foundation/colors/base/blue.mdx +232 -0
  7. package/src/foundation/colors/base/cyan.mdx +232 -0
  8. package/src/foundation/colors/base/deep-orange.mdx +232 -0
  9. package/src/foundation/colors/base/deep-purple.mdx +232 -0
  10. package/src/foundation/colors/base/green.mdx +232 -0
  11. package/src/foundation/colors/base/indigo.mdx +232 -0
  12. package/src/foundation/colors/base/light-blue.mdx +232 -0
  13. package/src/foundation/colors/base/light-green.mdx +232 -0
  14. package/src/foundation/colors/base/lime.mdx +232 -0
  15. package/src/foundation/colors/base/orange.mdx +232 -0
  16. package/src/foundation/colors/base/pink.mdx +232 -0
  17. package/src/foundation/colors/base/purple.mdx +232 -0
  18. package/src/foundation/colors/base/red.mdx +232 -0
  19. package/src/foundation/colors/base/teal.mdx +232 -0
  20. package/src/foundation/colors/base/yellow.mdx +232 -0
  21. package/src/foundation/colors/base-colors.mdx +141 -0
  22. package/src/foundation/colors/surface-colors.mdx +93 -0
  23. package/src/foundation/colors/theme/accent.mdx +232 -0
  24. package/src/foundation/colors/theme/primary.mdx +232 -0
  25. package/src/foundation/colors/theme/warn.mdx +232 -0
  26. package/src/foundation/colors/theme-colors.mdx +159 -0
  27. package/src/foundation/sizes/heights.mdx +232 -0
  28. package/src/foundation/sizes/max-heights.mdx +237 -0
  29. package/src/foundation/sizes/max-width.mdx +236 -0
  30. package/src/foundation/sizes/min-heights.mdx +237 -0
  31. package/src/foundation/sizes/min-width.mdx +236 -0
  32. package/src/foundation/sizes/sizes.mdx +219 -0
  33. package/src/foundation/sizes/widths.mdx +234 -0
  34. package/src/lib/matcha-autocomplete/autocomplete-overview.directive.ts +16 -0
  35. package/src/lib/matcha-autocomplete/autocomplete.argtypes.ts +64 -0
  36. package/src/lib/matcha-autocomplete/autocomplete.directive.ts +14 -0
  37. package/src/lib/matcha-autocomplete/autocomplete.mdx +112 -0
  38. package/src/lib/matcha-autocomplete/autocomplete.module.ts +14 -0
  39. package/src/lib/matcha-autocomplete/autocomplete.stories.ts +113 -0
  40. package/src/lib/matcha-badge/badge.module.ts +14 -0
  41. package/src/lib/matcha-badge/matcha-badge.directive.ts +16 -0
  42. package/src/lib/matcha-bottom-sheet/bottom-sheet.module.ts +14 -0
  43. package/src/lib/matcha-bottom-sheet/matcha-bottom-sheet.directive.ts +16 -0
  44. package/src/lib/matcha-button-toggle/button-toggle.module.ts +14 -0
  45. package/src/lib/matcha-button-toggle/matcha-button-toggle.directive.ts +16 -0
  46. package/src/lib/matcha-buttons/button.stories.ts +111 -0
  47. package/src/lib/matcha-buttons/buttons.module.ts +27 -0
  48. package/src/lib/matcha-buttons/matcha-btn-md.directive.ts +16 -0
  49. package/src/lib/matcha-buttons/matcha-btn-pill.directive.ts +15 -0
  50. package/src/lib/matcha-buttons/matcha-btn-size.directive.ts +17 -0
  51. package/src/lib/matcha-buttons/matcha-btn-xl.directive.ts +15 -0
  52. package/src/lib/matcha-card/card.mdx.txt +55 -0
  53. package/src/lib/matcha-card/matcha-card-argtype.ts +123 -0
  54. package/src/lib/matcha-card/matcha-card-content/matcha-card-content.component.html +3 -0
  55. package/src/lib/matcha-card/matcha-card-content/matcha-card-content.component.scss +0 -0
  56. package/src/lib/matcha-card/matcha-card-content/matcha-card-content.component.spec.ts +21 -0
  57. package/src/lib/matcha-card/matcha-card-content/matcha-card-content.component.ts +10 -0
  58. package/src/lib/matcha-card/matcha-card-footer/matcha-card-footer.component.html +3 -0
  59. package/src/lib/matcha-card/matcha-card-footer/matcha-card-footer.component.scss +0 -0
  60. package/src/lib/matcha-card/matcha-card-footer/matcha-card-footer.component.spec.ts +21 -0
  61. package/src/lib/matcha-card/matcha-card-footer/matcha-card-footer.component.ts +10 -0
  62. package/src/lib/matcha-card/matcha-card-header/matcha-card-header.component.html +4 -0
  63. package/src/lib/matcha-card/matcha-card-header/matcha-card-header.component.scss +0 -0
  64. package/src/lib/matcha-card/matcha-card-header/matcha-card-header.component.spec.ts +21 -0
  65. package/src/lib/matcha-card/matcha-card-header/matcha-card-header.component.ts +10 -0
  66. package/src/lib/matcha-card/matcha-card.component.html +3 -0
  67. package/src/lib/matcha-card/matcha-card.component.scss +117 -0
  68. package/src/lib/matcha-card/matcha-card.component.spec.ts +21 -0
  69. package/src/lib/matcha-card/matcha-card.component.ts +43 -0
  70. package/src/lib/matcha-card/matcha-card.module.ts +27 -0
  71. package/src/lib/matcha-card/matcha-card.stories.ts +80 -0
  72. package/src/lib/matcha-checkbox/checkbox.argtype.ts +79 -0
  73. package/src/lib/matcha-checkbox/checkbox.directive.ts +14 -0
  74. package/src/lib/matcha-checkbox/checkbox.mdx +76 -0
  75. package/src/lib/matcha-checkbox/checkbox.module.ts +9 -0
  76. package/src/lib/matcha-checkbox/checkbox.stories.ts +161 -0
  77. package/src/lib/matcha-checkbox/checkbox.stories.txt +74 -0
  78. package/src/lib/matcha-chips/chips.module.ts +12 -0
  79. package/src/lib/matcha-chips/matcha-chips.directive.ts +16 -0
  80. package/src/lib/matcha-components.module.ts +78 -0
  81. package/src/lib/matcha-datepicker/datepicker.argtypes.ts +63 -0
  82. package/src/lib/matcha-datepicker/datepicker.directive.ts +14 -0
  83. package/src/lib/matcha-datepicker/datepicker.mdx +73 -0
  84. package/src/lib/matcha-datepicker/datepicker.module.ts +9 -0
  85. package/src/lib/matcha-datepicker/datepicker.stories.ts +277 -0
  86. package/src/lib/matcha-dialog/dialog.module.ts +14 -0
  87. package/src/lib/matcha-dialog/matcha-dialog.directive.ts +16 -0
  88. package/src/lib/matcha-dialog2/confirmation-dialog.component.ts.txt +54 -0
  89. package/src/lib/matcha-dialog2/confirmation-dialog.stories.ts.txt +24 -0
  90. package/src/lib/matcha-divider/divider.module.ts +14 -0
  91. package/src/lib/matcha-divider/matcha-divider.directive.ts +16 -0
  92. package/src/lib/matcha-expansion-panel/expansion-panel.module.ts +14 -0
  93. package/src/lib/matcha-expansion-panel/matcha-expansion-panel.directive.ts +16 -0
  94. package/src/lib/matcha-forms/forms.module.ts +19 -0
  95. package/src/lib/matcha-forms/matcha-form-field-appearance.directive.ts +16 -0
  96. package/src/lib/matcha-forms/matcha-form-field-argtype.ts +73 -0
  97. package/src/lib/matcha-forms/matcha-form-field.mdx +284 -0
  98. package/src/lib/matcha-forms/matcha-form-field.stories.ts +345 -0
  99. package/src/lib/matcha-forms/matcha-form-input-text.directive.ts +16 -0
  100. package/src/lib/matcha-icon/icon.module.ts +19 -0
  101. package/src/lib/matcha-icon/matcha-icon-position-pos.directive.ts +15 -0
  102. package/src/lib/matcha-icon/matcha-icon-position-pre.directive.ts +15 -0
  103. package/src/lib/matcha-list/list.module.ts +14 -0
  104. package/src/lib/matcha-list/matcha-list.directive.ts +16 -0
  105. package/src/lib/matcha-menu/matcha-menu.directive.ts +16 -0
  106. package/src/lib/matcha-menu/menu.module.ts +14 -0
  107. package/src/lib/matcha-menu/menu.stories.txt +76 -0
  108. package/src/lib/matcha-paginator/matcha-paginator.directive.ts +16 -0
  109. package/src/lib/matcha-paginator/paginator.module.ts +14 -0
  110. package/src/lib/matcha-progress-bar/progress-bar.argtype.ts +48 -0
  111. package/src/lib/matcha-progress-bar/progress-bar.directive.ts +16 -0
  112. package/src/lib/matcha-progress-bar/progress-bar.mdx +95 -0
  113. package/src/lib/matcha-progress-bar/progress-bar.module.ts +14 -0
  114. package/src/lib/matcha-progress-bar/progress-bar.stories.ts +89 -0
  115. package/src/lib/matcha-progress-spinner/progress-spinner.argtype.ts +65 -0
  116. package/src/lib/matcha-progress-spinner/progress-spinner.directive.ts +16 -0
  117. package/src/lib/matcha-progress-spinner/progress-spinner.mdx +23 -0
  118. package/src/lib/matcha-progress-spinner/progress-spinner.module.ts +14 -0
  119. package/src/lib/matcha-progress-spinner/progress-spinner.stories.ts +44 -0
  120. package/src/lib/matcha-radio-button/matcha-radio-button.argtype.ts +85 -0
  121. package/src/lib/matcha-radio-button/matcha-radio-button.directive.ts +16 -0
  122. package/src/lib/matcha-radio-button/matcha-radio-button.stories.ts +44 -0
  123. package/src/lib/matcha-radio-button/radio-button.module.ts +12 -0
  124. package/src/lib/matcha-select/matcha-select.directive.ts +16 -0
  125. package/src/lib/matcha-select/select.module.ts +12 -0
  126. package/src/lib/matcha-select/select.stories.txt +109 -0
  127. package/src/lib/matcha-slide-toggle/slide-toggle.argtype.ts +66 -0
  128. package/src/lib/matcha-slide-toggle/slide-toggle.directive.ts +16 -0
  129. package/src/lib/matcha-slide-toggle/slide-toggle.mdx +92 -0
  130. package/src/lib/matcha-slide-toggle/slide-toggle.module.ts +12 -0
  131. package/src/lib/matcha-slide-toggle/slide-toggle.stories.ts +167 -0
  132. package/src/lib/matcha-slider/matcha-slider.directive.ts +16 -0
  133. package/src/lib/matcha-slider/slider.module.ts +12 -0
  134. package/src/lib/matcha-snackbar/matcha-snackbar.directive.ts +16 -0
  135. package/src/lib/matcha-snackbar/snackbar.module.ts +12 -0
  136. package/src/lib/matcha-sort-header/matcha-sort-header.directive.ts +16 -0
  137. package/src/lib/matcha-sort-header/sort-header.module.ts +12 -0
  138. package/src/lib/matcha-stepper/matcha-stepper.directive.ts +16 -0
  139. package/src/lib/matcha-stepper/stepper.module.ts +12 -0
  140. package/src/lib/matcha-table/matcha-table.directive.ts +16 -0
  141. package/src/lib/matcha-table/table.module.ts +12 -0
  142. package/src/lib/matcha-tabs/matcha-tabs.directive.ts +17 -0
  143. package/src/lib/matcha-tabs/tabs.module.ts +16 -0
  144. package/src/lib/matcha-tabs/tabs.stories.txt +18 -0
  145. package/src/lib/matcha-title/matcha-title.component.html +33 -0
  146. package/src/lib/matcha-title/matcha-title.component.scss +0 -0
  147. package/src/lib/matcha-title/matcha-title.component.spec.ts +21 -0
  148. package/src/lib/matcha-title/matcha-title.component.ts +24 -0
  149. package/src/lib/matcha-title/matcha-title.module.ts +18 -0
  150. package/src/lib/matcha-tooltip/matcha-tooltip.directive.ts +16 -0
  151. package/src/lib/matcha-tooltip/tooltip.module.ts +12 -0
  152. package/src/lib/matcha-tree/matcha-tree.directive.ts +16 -0
  153. package/src/lib/matcha-tree/tree.module.ts +12 -0
  154. package/src/public-api.ts +93 -0
  155. package/tsconfig.lib.json +18 -0
  156. package/tsconfig.lib.prod.json +10 -0
  157. package/tsconfig.spec.json +14 -0
  158. package/esm2022/lib/components/matcha-confirm-dialog/matcha-confirm-dialog.component.mjs +0 -47
  159. package/esm2022/lib/components/matcha-confirm-dialog/matcha-confirm-dialog.module.mjs +0 -18
  160. package/esm2022/lib/components/matcha-input-search/matcha-input-search.component.mjs +0 -12
  161. package/esm2022/lib/components/matcha-input-search/matcha-input-search.module.mjs +0 -18
  162. package/esm2022/lib/matcha-components.component.mjs +0 -12
  163. package/esm2022/lib/matcha-components.module.mjs +0 -44
  164. package/esm2022/matcha-components.mjs +0 -5
  165. package/esm2022/public-api.mjs +0 -11
  166. package/fesm2022/matcha-components.mjs +0 -141
  167. package/fesm2022/matcha-components.mjs.map +0 -1
  168. package/index.d.ts +0 -5
  169. package/lib/components/matcha-confirm-dialog/matcha-confirm-dialog.component.d.ts +0 -20
  170. package/lib/components/matcha-confirm-dialog/matcha-confirm-dialog.module.d.ts +0 -8
  171. package/lib/components/matcha-input-search/matcha-input-search.component.d.ts +0 -5
  172. package/lib/components/matcha-input-search/matcha-input-search.module.d.ts +0 -8
  173. package/lib/matcha-components.component.d.ts +0 -5
  174. package/lib/matcha-components.module.d.ts +0 -11
  175. package/public-api.d.ts +0 -5
@@ -0,0 +1,95 @@
1
+ import { Story } from "@storybook/blocks";
2
+ import { Meta } from "@storybook/addon-docs";
3
+ import * as ComponentStories from "./progress-bar.stories";
4
+
5
+ <Meta title="Atoms / Progress Bar / Documentação" />
6
+
7
+ # Progress bar
8
+
9
+ > _mat-progress-bar_ is a horizontal progress-bar for indicating progress and activity.
10
+
11
+ ---
12
+
13
+ ### Modes
14
+
15
+ <div class="grid-md-2 gap-16">
16
+
17
+ <div class="matcha-card background-surface d-flex-column gap-16">
18
+ <span class="h5">ProgressBar - Indeterminate</span>
19
+ <div class="matcha-card background-bg">
20
+ <Story of={ComponentStories.ProgressBarIndeterminate} />
21
+ </div>
22
+ <div class="d-flex-column">
23
+ ```html
24
+ <mat-progress-bar
25
+ matcha-progress-bar
26
+ color="accent"
27
+ mode="indeterminate"
28
+ ></mat-progress-bar>
29
+ ```
30
+ </div>
31
+ </div>
32
+
33
+ <div class="matcha-card background-surface d-flex-column gap-16">
34
+ <span class="h5">ProgressBar - Query</span>
35
+ <div class="matcha-card background-bg">
36
+ <Story of={ComponentStories.ProgressBarQuery} />
37
+ </div>
38
+ <div class="d-flex-column">
39
+ ```html
40
+ <mat-progress-bar
41
+ matcha-progress-bar
42
+ color="accent"
43
+ mode="query"
44
+ ></mat-progress-bar>
45
+ ```
46
+ </div>
47
+ </div>
48
+
49
+ <div class="matcha-card background-surface d-flex-column gap-16">
50
+ <span class="h5">ProgressBar - Buffer</span>
51
+ <div class="matcha-card background-bg">
52
+ <Story of={ComponentStories.ProgressBarBuffer} />
53
+ </div>
54
+ <div class="d-flex-column">
55
+ ```html
56
+ <mat-progress-bar
57
+ matcha-progress-bar
58
+ bufferValue="75"
59
+ color="accent"
60
+ mode="buffer"
61
+ value="25">
62
+ </mat-progress-bar>
63
+ ```
64
+ </div>
65
+ </div>
66
+
67
+
68
+ <div class="matcha-card background-surface d-flex-column gap-16">
69
+ <span class="h5">ProgressBar - Determinate</span>
70
+ <div class="matcha-card background-bg">
71
+ <Story of={ComponentStories.ProgressBarDeterminate} />
72
+ </div>
73
+ <div class="d-flex-column">
74
+ ```html
75
+ <mat-progress-bar
76
+ matcha-progress-bar
77
+ color="accent"
78
+ mode="determinate"
79
+ value="25">
80
+ </mat-progress-bar>
81
+ ```
82
+ </div>
83
+ </div>
84
+
85
+ </div>
86
+
87
+ <br />
88
+
89
+ ### Installation
90
+
91
+ `import {MatProgressBarModule} from '@angular/material/progress-bar';`
92
+
93
+ [Official documentation](https://material.angular.io/components/progress-bar/overview)
94
+
95
+ <br />
@@ -0,0 +1,14 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { MatchaProgressBarDirective } from './progress-bar.directive';
4
+
5
+ @NgModule({
6
+ declarations: [MatchaProgressBarDirective],
7
+ imports: [
8
+ CommonModule
9
+ ],
10
+ exports:[
11
+ MatchaProgressBarDirective
12
+ ]
13
+ })
14
+ export class MatchaProgressBarModule { }
@@ -0,0 +1,89 @@
1
+ import { Meta, moduleMetadata, StoryObj } from '@storybook/angular';
2
+ import { config } from '@storybook/addon-designs';
3
+
4
+ import { MatProgressBarModule } from '@angular/material/progress-bar';
5
+ import { progressBarArgtypes } from './progress-bar.argtype';
6
+ import { MatchaProgressBarDirective } from './progress-bar.directive';
7
+
8
+ export default {
9
+ title: 'Atoms / Progress bar',
10
+ decorators: [
11
+ moduleMetadata({
12
+ imports: [MatProgressBarModule],
13
+ declarations: [MatchaProgressBarDirective],
14
+ }),
15
+ ],
16
+ args: {
17
+ bufferValue: 75,
18
+ color: 'accent',
19
+ value: 25,
20
+ },
21
+ argTypes: progressBarArgtypes,
22
+ parameters: {
23
+ controls: {
24
+ expanded: true,
25
+ exclude: ['mode'],
26
+ },
27
+ design: config({
28
+ type: 'figma',
29
+ url: 'https://www.figma.com/file/Enji6Zk0UvtHyt8fdOPdBx/DS-PAINEL-(Copy)?type=design&mode=design&t=IKqH3YB1sj5qgDHJ-1',
30
+ }),
31
+ },
32
+ } as Meta;
33
+
34
+ export const ProgressBarBuffer: StoryObj = {
35
+ render: (args) => ({
36
+ props: args,
37
+ template: `
38
+ <mat-progress-bar
39
+ matcha-progress-bar
40
+ [bufferValue]="bufferValue"
41
+ [color]="color"
42
+ mode="buffer"
43
+ [value]="value"></mat-progress-bar>
44
+ `,
45
+ }),
46
+ name: 'Buffer',
47
+ };
48
+
49
+ export const ProgressBarQuery: StoryObj = {
50
+ render: (args) => ({
51
+ props: args,
52
+ template: `
53
+ <mat-progress-bar
54
+ matcha-progress-bar
55
+ [color]="color"
56
+ mode="query">
57
+ </mat-progress-bar>
58
+ `,
59
+ }),
60
+ name: 'Query',
61
+ };
62
+
63
+ export const ProgressBarIndeterminate: StoryObj = {
64
+ render: (args) => ({
65
+ props: args,
66
+ template: `
67
+ <mat-progress-bar
68
+ matcha-progress-bar
69
+ [color]="color"
70
+ mode="indeterminate">
71
+ </mat-progress-bar>
72
+ `,
73
+ }),
74
+ name: 'Indeterminate',
75
+ };
76
+
77
+ export const ProgressBarDeterminate: StoryObj = {
78
+ render: (args) => ({
79
+ props: args,
80
+ template: `
81
+ <mat-progress-bar
82
+ matcha-progress-bar
83
+ [color]="color"
84
+ mode="determinate"
85
+ [value]="value"></mat-progress-bar>
86
+ `,
87
+ }),
88
+ name: 'Determinate',
89
+ };
@@ -0,0 +1,65 @@
1
+ export const progressSpinnerArgtypes = {
2
+ color: {
3
+ description: 'Theme color palette',
4
+ control: 'select',
5
+ defaultValue: 'primary',
6
+ table: {
7
+ defaultValue: { summary: 'primary' },
8
+ },
9
+ options: [
10
+ 'primary',
11
+ 'accent',
12
+ 'warn',
13
+ ]
14
+ },
15
+ diameter: {
16
+ description: 'The diameter of the progress spinner (will set width and height of svg)',
17
+ defaultValue: 100,
18
+ table: {
19
+ type: { summary: 'number' },
20
+ defaultValue: { summary: 100 },
21
+ },
22
+ control: {
23
+ type: 'number'
24
+ }
25
+ },
26
+ mode: {
27
+ description: 'Mode of the progress circle',
28
+ control: 'select',
29
+ defaultValue: 'indeterminate',
30
+ table: {
31
+ defaultValue: { summary: 'indeterminate' },
32
+ },
33
+ options: [
34
+ 'determinate',
35
+ 'indeterminate',
36
+ 'buffer',
37
+ 'query'
38
+ ]
39
+ },
40
+ strokeWidth: {
41
+ description: 'Stroke width of the progress spinner',
42
+ defaultValue: 5,
43
+ table: {
44
+ type: { summary: 'number' },
45
+ defaultValue: { summary: 5 },
46
+ },
47
+ control: {
48
+ type: 'number'
49
+ }
50
+ },
51
+ value: {
52
+ description: 'Value of the progress circle',
53
+ defaultValue: 70,
54
+ table: {
55
+ type: { summary: 'range' },
56
+ defaultValue: { summary: 70 },
57
+ },
58
+ control: {
59
+ type: 'range',
60
+ min: 0,
61
+ max: 100,
62
+ step: 1
63
+ }
64
+ }
65
+ }
@@ -0,0 +1,16 @@
1
+ import { Directive, ElementRef, Renderer2 } from '@angular/core';
2
+
3
+ @Directive({
4
+ selector: '[matcha-progress-spinner]'
5
+ })
6
+ export class MatchaProgressSpinnerDirective {
7
+
8
+ constructor(
9
+ private _elementRef: ElementRef,
10
+ private _renderer: Renderer2
11
+ ) {
12
+ //this._elementRef.nativeElement.style.backgroundColor = 'grey';
13
+ this._renderer.addClass(this._elementRef.nativeElement, 'matcha-progress-spinner')
14
+ }
15
+
16
+ }
@@ -0,0 +1,23 @@
1
+ import { Story } from '@storybook/blocks';
2
+ import * as ComponentStories from './progress-spinner.stories';
3
+ import { Meta } from '@storybook/addon-docs';
4
+
5
+
6
+ <Meta of={ComponentStories} />
7
+
8
+ # Progress spinner
9
+
10
+ > *mat-progress-spinner* and *mat-spinner* are a circular indicators of progress and activity.
11
+
12
+ <br/>
13
+
14
+ ## Installation
15
+
16
+ `import {MatProgressSpinnerModule} from '@angular/material/progress-spinner';`
17
+
18
+ [Official documentation](https://material.angular.io/components/progress-spinner/overview)
19
+
20
+ <br/>
21
+
22
+ ## Example
23
+ <Story of={ComponentStories.WithBasicUsage}></Story>
@@ -0,0 +1,14 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { MatchaProgressSpinnerDirective } from './progress-spinner.directive';
4
+
5
+ @NgModule({
6
+ declarations: [MatchaProgressSpinnerDirective],
7
+ imports: [
8
+ CommonModule
9
+ ],
10
+ exports:[
11
+ MatchaProgressSpinnerDirective
12
+ ]
13
+ })
14
+ export class MatchaProgressSpinnerModule { }
@@ -0,0 +1,44 @@
1
+ import { Meta, moduleMetadata, StoryObj } from '@storybook/angular';
2
+ import { progressSpinnerArgtypes } from './progress-spinner.argtype';
3
+ import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
4
+ import { MatchaProgressSpinnerDirective } from './progress-spinner.directive';
5
+
6
+ const meta: Meta<typeof MatProgressSpinnerModule> = {
7
+ component: MatProgressSpinnerModule,
8
+ };
9
+
10
+ export default {
11
+ title: 'Atoms/Progress spinner',
12
+ decorators: [
13
+ moduleMetadata({
14
+ imports: [MatProgressSpinnerModule],
15
+ declarations: [MatchaProgressSpinnerDirective],
16
+ }),
17
+ ],
18
+ // tags: ['autodocs'],
19
+ args: {
20
+ color: 'primary',
21
+ diameter: 50,
22
+ strokeWidth: 5,
23
+ value: 70,
24
+ },
25
+ argTypes: progressSpinnerArgtypes,
26
+ parameters: {
27
+ controls: {
28
+ expanded: true,
29
+ exclude: ['mode'],
30
+ },
31
+ },
32
+ } as Meta;
33
+
34
+ /** Ce é pixuloko ce é biruleibe? */
35
+ export const WithBasicUsage: StoryObj = {
36
+ render: (args) => ({
37
+ props: args,
38
+ template: `
39
+ <mat-progress-spinner matcha-progress-spinner [color]="color" mode="determinate" [value]="value" [diameter]="diameter" [strokeWidth]="strokeWidth"></mat-progress-spinner>
40
+ <mat-progress-spinner matcha-progress-spinner [color]="color" mode="indeterminate" [value]="value" [diameter]="diameter" [strokeWidth]="strokeWidth"></mat-progress-spinner>
41
+ `,
42
+ }),
43
+ name: 'basic usage',
44
+ };
@@ -0,0 +1,85 @@
1
+ export const matchaRadioButtonArgtypes = {
2
+ color: {
3
+ description: 'Theme color for all of the radio buttons in the group.',
4
+ control: 'select',
5
+ defaultValue: 'primary',
6
+ table: {
7
+ defaultValue: { summary: 'primary' },
8
+ },
9
+ options: [
10
+ 'primary',
11
+ 'accent',
12
+ 'warn',
13
+ ]
14
+ },
15
+ disabled: {
16
+ description: 'Whether the radio group is disabled',
17
+ control: 'boolean',
18
+ defaultValue: true,
19
+ table: {
20
+ defaultValue: { summary: true },
21
+ },
22
+ },
23
+ labelPosition: {
24
+ description: 'Whether the labels should appear after or before the radio-buttons. Defaults to "after"',
25
+ control: 'select',
26
+ defaultValue: 'after',
27
+ table: {
28
+ defaultValue: { summary: 'after' },
29
+ },
30
+ options: [
31
+ 'before',
32
+ 'after'
33
+ ]
34
+ },
35
+ // strokeWidth: {
36
+ // description: 'Stroke width of the progress spinner',
37
+ // defaultValue: 5,
38
+ // table: {
39
+ // type: { summary: 'number' },
40
+ // defaultValue: { summary: 5 },
41
+ // },
42
+ // control: {
43
+ // type: 'number'
44
+ // }
45
+ // },
46
+ // value: {
47
+ // description: 'Value of the progress circle',
48
+ // defaultValue: 70,
49
+ // table: {
50
+ // type: { summary: 'range' },
51
+ // defaultValue: { summary: 70 },
52
+ // },
53
+ // control: {
54
+ // type: 'range',
55
+ // min: 0,
56
+ // max: 100,
57
+ // step: 1
58
+ // }
59
+ // }
60
+ }
61
+
62
+ // Whether the labels should appear after or before the radio-buttons. Defaults to 'after'
63
+
64
+ // @Input()
65
+ // name: string
66
+
67
+ // Name of the radio button group. All radio buttons inside this group will use this name.
68
+
69
+ // @Input()
70
+ // required: boolean
71
+
72
+ // Whether the radio group is required
73
+
74
+ // @Input()
75
+ // selected: T
76
+
77
+ // The currently selected radio button. If set to a new radio button, the radio group value will be updated to match the new selected button.
78
+
79
+ // @Input()
80
+ // value: any
81
+
82
+ // Value for the radio-group. Should equal the value of the selected radio button if there is a corresponding radio button with a matching value. If there is not such a corresponding radio button, this value persists to be applied in case a new radio button is added with a matching value.
83
+
84
+ // @Output()
85
+ // change: EventEmitter<MatRadioChange>
@@ -0,0 +1,16 @@
1
+ import { Directive, ElementRef, Renderer2 } from '@angular/core';
2
+
3
+ @Directive({
4
+ selector: '[matchaRadioButton]'
5
+ })
6
+ export class MatchaRadioButtonDirective {
7
+
8
+ constructor(
9
+ private _elementRef: ElementRef,
10
+ private _renderer: Renderer2
11
+ ) {
12
+ //this._elementRef.nativeElement.style.backgroundColor = 'grey';
13
+ this._renderer.addClass(this._elementRef.nativeElement, 'matcha-radio-button')
14
+ }
15
+
16
+ }
@@ -0,0 +1,44 @@
1
+ import { Meta, moduleMetadata, StoryObj } from '@storybook/angular';
2
+
3
+ import { MatRadioModule } from '@angular/material/radio';
4
+
5
+ import { matchaRadioButtonArgtypes } from './matcha-radio-button.argtype';
6
+ import { MatchaRadioButtonDirective } from './matcha-radio-button.directive';
7
+
8
+ /** Este é o card principal */
9
+ export default {
10
+ title: 'Atoms/Radio Button',
11
+ decorators: [
12
+ moduleMetadata({
13
+ imports: [MatRadioModule],
14
+ declarations: [MatchaRadioButtonDirective],
15
+ }),
16
+ ],
17
+ tags: ['autodocs'],
18
+ args: {
19
+ color: 'primary',
20
+ diameter: 50,
21
+ strokeWidth: 5,
22
+ value: 70,
23
+ },
24
+ argTypes: matchaRadioButtonArgtypes,
25
+ parameters: {
26
+ controls: {
27
+ expanded: true,
28
+ exclude: ['mode'],
29
+ },
30
+ },
31
+ } as Meta;
32
+
33
+ export const WithBasicUsage: StoryObj = {
34
+ render: (args) => ({
35
+ props: args,
36
+ template: `
37
+ <mat-radio-group aria-label="Select an option" matchaRadioButton>
38
+ <mat-radio-button value="1">Option 1</mat-radio-button>
39
+ <mat-radio-button value="2">Option 2</mat-radio-button>
40
+ </mat-radio-group>
41
+ `,
42
+ }),
43
+ name: 'basic usage',
44
+ };
@@ -0,0 +1,12 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { MatchaRadioButtonDirective } from './matcha-radio-button.directive';
4
+
5
+ @NgModule({
6
+ declarations: [MatchaRadioButtonDirective],
7
+ imports: [
8
+ CommonModule
9
+ ],
10
+ exports:[MatchaRadioButtonDirective]
11
+ })
12
+ export class MatchaRadioButtonModule { }
@@ -0,0 +1,16 @@
1
+ import { Directive, ElementRef, Renderer2 } from '@angular/core';
2
+
3
+ @Directive({
4
+ selector: '[matchaSelect]'
5
+ })
6
+ export class MatchaSelectDirective {
7
+
8
+ constructor(
9
+ private _elementRef: ElementRef,
10
+ private _renderer: Renderer2
11
+ ) {
12
+ //this._elementRef.nativeElement.style.backgroundColor = 'grey';
13
+ this._renderer.addClass(this._elementRef.nativeElement, 'matcha-select')
14
+ }
15
+
16
+ }
@@ -0,0 +1,12 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { MatchaSelectDirective } from './matcha-select.directive';
4
+
5
+ @NgModule({
6
+ declarations: [MatchaSelectDirective],
7
+ imports: [
8
+ CommonModule
9
+ ],
10
+ exports:[MatchaSelectDirective]
11
+ })
12
+ export class MatchaSelectModule { }
@@ -0,0 +1,109 @@
1
+ import {storiesOf} from '@storybook/angular';
2
+ import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
3
+ import {MatFormFieldModule} from '@angular/material/form-field';
4
+ import {MatSelectModule} from '@angular/material/select';
5
+ import {array, boolean, text, object} from 'storybook-addon-knobs-color-options';
6
+ import {action} from '@storybook/addon-actions';
7
+
8
+ storiesOf('Select', module)
9
+ .add('Single Select', () => ({
10
+ template: `
11
+ <div>
12
+ <mat-form-field>
13
+ <mat-select (change)="onChange($event)" [placeholder]="placeholder" [disabled]="disabled">
14
+ <mat-option *ngFor="let food of foods" [value]="food">
15
+ {{food}}
16
+ </mat-option>
17
+ </mat-select>
18
+ </mat-form-field>
19
+ </div>
20
+ `,
21
+ props: {
22
+ foods: array('foods', [
23
+ 'Pizza',
24
+ 'Burgers',
25
+ 'Steak',
26
+ 'Tacos'
27
+ ]),
28
+ placeholder: text('placeholder', 'Favorite food'),
29
+ disabled: boolean('disabled', false),
30
+ onChange: action('change')
31
+ },
32
+ moduleMetadata: {
33
+ imports: [MatFormFieldModule, BrowserAnimationsModule, MatSelectModule]
34
+ }
35
+ }))
36
+ .add('Multi Select', () => ({
37
+ template: `
38
+ <div>
39
+ <mat-form-field>
40
+ <mat-select (change)="onChange($event)" [placeholder]="placeholder" multiple [disabled]="disabled">
41
+ <mat-option *ngFor="let food of foods" [value]="food">
42
+ {{food}}
43
+ </mat-option>
44
+ </mat-select>
45
+ </mat-form-field>
46
+ </div>
47
+ `,
48
+ props: {
49
+ foods: array('foods', [
50
+ 'Pizza',
51
+ 'Burgers',
52
+ 'Steak',
53
+ 'Tacos'
54
+ ]),
55
+ placeholder: text('placeholder', 'Favorite food'),
56
+ disabled: boolean('disabled', false),
57
+ onChange: action('change')
58
+ },
59
+ moduleMetadata: {
60
+ imports: [MatFormFieldModule, BrowserAnimationsModule, MatSelectModule]
61
+ }
62
+ }))
63
+ .add('Groups', () => ({
64
+ template: `
65
+ <div>
66
+ <mat-form-field>
67
+ <mat-select (change)="onChange($event)" [placeholder]="placeholder" [disabled]="disabled">
68
+ <mat-option>-- None --</mat-option>
69
+ <mat-optgroup *ngFor="let group of foodGroups" [label]="group.name">
70
+ <mat-option *ngFor="let food of group.foods" [value]="food">
71
+ {{food}}
72
+ </mat-option>
73
+ </mat-optgroup>
74
+ </mat-select>
75
+ </mat-form-field>
76
+ </div>
77
+ `,
78
+ props: {
79
+ foodGroups: object('foodGroups', [
80
+ {
81
+ name: 'Fruit',
82
+ foods: [
83
+ 'Apple',
84
+ 'Orange'
85
+ ]
86
+ },
87
+ {
88
+ name: 'Vegetables',
89
+ foods: [
90
+ 'Lettuce',
91
+ 'Broccoli'
92
+ ]
93
+ },
94
+ {
95
+ name: 'Meats',
96
+ foods: [
97
+ 'Steak',
98
+ 'Chicken'
99
+ ]
100
+ }
101
+ ]),
102
+ disabled: boolean('disabled', false),
103
+ placeholder: text('placeholder', 'Foods'),
104
+ onChange: action('change')
105
+ },
106
+ moduleMetadata: {
107
+ imports: [MatFormFieldModule, BrowserAnimationsModule, MatSelectModule]
108
+ }
109
+ }));