@3ddv/software-division-components 1.0.0-alpha.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 (113) hide show
  1. package/.storybook/main.ts +26 -0
  2. package/.storybook/preview.ts +20 -0
  3. package/.storybook/tsconfig.json +10 -0
  4. package/.storybook/typings.d.ts +4 -0
  5. package/README.md +25 -0
  6. package/documentation.json +1300 -0
  7. package/ng-package.json +7 -0
  8. package/package.json +26 -0
  9. package/src/index.ts +1 -0
  10. package/src/lib/backoffice/table/index.ts +1 -0
  11. package/src/lib/backoffice/table/package.json +5 -0
  12. package/src/lib/backoffice/table/public-api.ts +2 -0
  13. package/src/lib/backoffice/table/table.component.html +37 -0
  14. package/src/lib/backoffice/table/table.component.ts +30 -0
  15. package/src/lib/backoffice/table/table.service.ts +10 -0
  16. package/src/lib/backoffice/table/table.stories.ts +30 -0
  17. package/src/lib/backoffice/table/types.ts +2 -0
  18. package/src/lib/backoffice/table/utils.ts +7 -0
  19. package/src/lib/dvm/cart/cart.component.html +24 -0
  20. package/src/lib/dvm/cart/cart.component.ts +14 -0
  21. package/src/lib/dvm/cart/cart.service.ts +8 -0
  22. package/src/lib/dvm/cart/cart.stories.ts +31 -0
  23. package/src/lib/dvm/cart/index.ts +1 -0
  24. package/src/lib/dvm/cart/package.json +5 -0
  25. package/src/lib/dvm/cart/public-api.ts +6 -0
  26. package/src/lib/dvm/cart-item/cart-item.component.html +24 -0
  27. package/src/lib/dvm/cart-item/cart-item.component.ts +14 -0
  28. package/src/lib/dvm/cart-item/cart-item.service.ts +8 -0
  29. package/src/lib/dvm/cart-item/cart.stories.ts +31 -0
  30. package/src/lib/dvm/cart-item/index.ts +1 -0
  31. package/src/lib/dvm/cart-item/package.json +5 -0
  32. package/src/lib/dvm/cart-item/public-api.ts +6 -0
  33. package/src/lib/dvm/legend/index.ts +1 -0
  34. package/src/lib/dvm/legend/legend.component.html +24 -0
  35. package/src/lib/dvm/legend/legend.component.ts +14 -0
  36. package/src/lib/dvm/legend/legend.service.ts +8 -0
  37. package/src/lib/dvm/legend/legend.stories.ts +31 -0
  38. package/src/lib/dvm/legend/package.json +5 -0
  39. package/src/lib/dvm/legend/public-api.ts +6 -0
  40. package/src/lib/dvm/loader/index.ts +1 -0
  41. package/src/lib/dvm/loader/loader.component.html +24 -0
  42. package/src/lib/dvm/loader/loader.component.ts +14 -0
  43. package/src/lib/dvm/loader/loader.service.ts +8 -0
  44. package/src/lib/dvm/loader/loader.stories.ts +31 -0
  45. package/src/lib/dvm/loader/package.json +5 -0
  46. package/src/lib/dvm/loader/public-api.ts +6 -0
  47. package/src/lib/dvm/popover/index.ts +1 -0
  48. package/src/lib/dvm/popover/package.json +5 -0
  49. package/src/lib/dvm/popover/popover.component.html +24 -0
  50. package/src/lib/dvm/popover/popover.component.ts +14 -0
  51. package/src/lib/dvm/popover/popover.service.ts +8 -0
  52. package/src/lib/dvm/popover/popover.stories.ts +31 -0
  53. package/src/lib/dvm/popover/public-api.ts +6 -0
  54. package/src/lib/dvm/stepper/index.ts +1 -0
  55. package/src/lib/dvm/stepper/package.json +5 -0
  56. package/src/lib/dvm/stepper/public-api.ts +6 -0
  57. package/src/lib/dvm/stepper/stepper.component.html +24 -0
  58. package/src/lib/dvm/stepper/stepper.component.ts +14 -0
  59. package/src/lib/dvm/stepper/stepper.service.ts +8 -0
  60. package/src/lib/dvm/stepper/stepper.stories.ts +31 -0
  61. package/src/lib/dvm/ticket-info-item/index.ts +1 -0
  62. package/src/lib/dvm/ticket-info-item/package.json +5 -0
  63. package/src/lib/dvm/ticket-info-item/public-api.ts +6 -0
  64. package/src/lib/dvm/ticket-info-item/ticket-info-item.component.html +24 -0
  65. package/src/lib/dvm/ticket-info-item/ticket-info-item.component.ts +14 -0
  66. package/src/lib/dvm/ticket-info-item/ticket-info-item.service.ts +8 -0
  67. package/src/lib/dvm/ticket-info-item/ticket-info-item.stories.ts +31 -0
  68. package/src/lib/generic/button/button.component.html +25 -0
  69. package/src/lib/generic/button/button.component.scss +5 -0
  70. package/src/lib/generic/button/button.component.ts +25 -0
  71. package/src/lib/generic/button/button.service.ts +8 -0
  72. package/src/lib/generic/button/button.stories.ts +117 -0
  73. package/src/lib/generic/button/index.ts +1 -0
  74. package/src/lib/generic/button/package.json +5 -0
  75. package/src/lib/generic/button/public-api.ts +6 -0
  76. package/src/lib/generic/drawer/drawer.component.html +24 -0
  77. package/src/lib/generic/drawer/drawer.component.ts +14 -0
  78. package/src/lib/generic/drawer/drawer.service.ts +8 -0
  79. package/src/lib/generic/drawer/drawer.stories.ts +31 -0
  80. package/src/lib/generic/drawer/index.ts +1 -0
  81. package/src/lib/generic/drawer/package.json +5 -0
  82. package/src/lib/generic/drawer/public-api.ts +6 -0
  83. package/src/lib/generic/modal/index.ts +1 -0
  84. package/src/lib/generic/modal/modal.component.html +24 -0
  85. package/src/lib/generic/modal/modal.component.ts +14 -0
  86. package/src/lib/generic/modal/modal.service.ts +8 -0
  87. package/src/lib/generic/modal/modal.stories.ts +31 -0
  88. package/src/lib/generic/modal/package.json +5 -0
  89. package/src/lib/generic/modal/public-api.ts +6 -0
  90. package/src/public-api.ts +3 -0
  91. package/src/stories/.eslintrc.json +5 -0
  92. package/src/stories/Configure.mdx +364 -0
  93. package/src/stories/assets/accessibility.png +0 -0
  94. package/src/stories/assets/accessibility.svg +1 -0
  95. package/src/stories/assets/addon-library.png +0 -0
  96. package/src/stories/assets/assets.png +0 -0
  97. package/src/stories/assets/avif-test-image.avif +0 -0
  98. package/src/stories/assets/context.png +0 -0
  99. package/src/stories/assets/discord.svg +1 -0
  100. package/src/stories/assets/docs.png +0 -0
  101. package/src/stories/assets/figma-plugin.png +0 -0
  102. package/src/stories/assets/github.svg +1 -0
  103. package/src/stories/assets/share.png +0 -0
  104. package/src/stories/assets/styling.png +0 -0
  105. package/src/stories/assets/testing.png +0 -0
  106. package/src/stories/assets/theming.png +0 -0
  107. package/src/stories/assets/tutorials.svg +1 -0
  108. package/src/stories/assets/youtube.svg +1 -0
  109. package/src/stories/user.ts +3 -0
  110. package/styles.scss +3 -0
  111. package/tsconfig.lib.json +14 -0
  112. package/tsconfig.lib.prod.json +11 -0
  113. package/tsconfig.spec.json +15 -0
@@ -0,0 +1,1300 @@
1
+ {
2
+ "pipes": [],
3
+ "interfaces": [],
4
+ "injectables": [],
5
+ "guards": [],
6
+ "interceptors": [],
7
+ "classes": [],
8
+ "directives": [],
9
+ "components": [],
10
+ "modules": [],
11
+ "miscellaneous": {
12
+ "variables": [
13
+ {
14
+ "name": "Action",
15
+ "ctype": "miscellaneous",
16
+ "subtype": "variable",
17
+ "file": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
18
+ "deprecated": false,
19
+ "deprecationMessage": "",
20
+ "type": "Story",
21
+ "defaultValue": "{\n args: {\n rounded: true,\n icon: 'pi pi-bookmark',\n tooltip: 'description here',\n },\n}"
22
+ },
23
+ {
24
+ "name": "Disabled",
25
+ "ctype": "miscellaneous",
26
+ "subtype": "variable",
27
+ "file": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
28
+ "deprecated": false,
29
+ "deprecationMessage": "",
30
+ "type": "Story",
31
+ "defaultValue": "{\n args: {\n label: 'Disabled Button',\n disabled: true,\n severity: 'secondary',\n tooltip: 'description here',\n },\n}"
32
+ },
33
+ {
34
+ "name": "Link",
35
+ "ctype": "miscellaneous",
36
+ "subtype": "variable",
37
+ "file": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
38
+ "deprecated": false,
39
+ "deprecationMessage": "",
40
+ "type": "Story",
41
+ "defaultValue": "{\n args: {\n label: 'Link Button',\n link: true,\n severity: 'help',\n tooltip: 'description here',\n },\n}"
42
+ },
43
+ {
44
+ "name": "Loading",
45
+ "ctype": "miscellaneous",
46
+ "subtype": "variable",
47
+ "file": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
48
+ "deprecated": false,
49
+ "deprecationMessage": "",
50
+ "type": "Story",
51
+ "defaultValue": "{\n args: {\n label: 'Loading Button',\n loading: true,\n severity: 'info',\n tooltip: 'description here',\n },\n}"
52
+ },
53
+ {
54
+ "name": "meta",
55
+ "ctype": "miscellaneous",
56
+ "subtype": "variable",
57
+ "file": "projects/software-division-components/src/lib/backoffice/table/table.stories.ts",
58
+ "deprecated": false,
59
+ "deprecationMessage": "",
60
+ "type": "Meta<TableComponent>",
61
+ "defaultValue": "{\n title: 'Backoffice/Table',\n decorators: [\n moduleMetadata({\n imports: [TableModule],\n }),\n ],\n component: TableComponent,\n id: 'Table',\n argTypes: {},\n // Use `fn` to spy on the onClick arg, which will appear in the actions panel once invoked: https://storybook.js.org/docs/essentials/actions#action-args\n}"
62
+ },
63
+ {
64
+ "name": "meta",
65
+ "ctype": "miscellaneous",
66
+ "subtype": "variable",
67
+ "file": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
68
+ "deprecated": false,
69
+ "deprecationMessage": "",
70
+ "type": "Meta<ButtonComponent>",
71
+ "defaultValue": "{\n title: 'Generic/Button',\n component: ButtonComponent,\n id: 'Button',\n argTypes: {\n label: { control: 'text', description: 'Label of the button' },\n icon: { control: 'text', description: 'Icon displayed on the button' },\n type: { control: 'text', description: 'Type of the button' },\n iconPos: {\n control: 'radio',\n options: ['left', 'right'],\n description: 'Position of the icon',\n },\n disabled: { control: 'boolean', description: 'Disables the button' },\n loading: { control: 'boolean', description: 'Displays a loading state' },\n severity: {\n control: 'select',\n options: ['primary', 'secondary', 'success', 'info', 'warn', 'danger', 'help', 'contrast'],\n description: 'Style severity of the button',\n },\n rounded: { control: 'boolean', description: 'Applies rounded border radius' },\n raised: { control: 'boolean', description: 'Adds a shadow to indicate elevation' },\n outlined: { control: 'boolean', description: 'Adds an outlined border' },\n link: { control: 'boolean', description: 'Displays the button as a link' },\n size: {\n control: 'radio',\n options: ['small', 'normal', 'large'],\n description: 'Size of the button',\n },\n badge: { control: 'text', description: 'Value of the badge' },\n ariaLabel: { control: 'text', description: 'Aria label for accessibility' },\n style: { control: 'object', description: 'Inline styles for the button' },\n tooltip: { control: 'text', description: 'Tooltip for the button' },\n onClick: { action: 'clicked', description: 'Emits when button is clicked' },\n },\n}"
72
+ },
73
+ {
74
+ "name": "meta",
75
+ "ctype": "miscellaneous",
76
+ "subtype": "variable",
77
+ "file": "projects/software-division-components/src/lib/generic/drawer/drawer.stories.ts",
78
+ "deprecated": false,
79
+ "deprecationMessage": "",
80
+ "type": "Meta<DrawerComponent>",
81
+ "defaultValue": "{\n title: 'Generic/Drawer',\n component: DrawerComponent,\n id: 'Drawer',\n}"
82
+ },
83
+ {
84
+ "name": "meta",
85
+ "ctype": "miscellaneous",
86
+ "subtype": "variable",
87
+ "file": "projects/software-division-components/src/lib/generic/modal/modal.stories.ts",
88
+ "deprecated": false,
89
+ "deprecationMessage": "",
90
+ "type": "Meta<ModalComponent>",
91
+ "defaultValue": "{\n title: 'Generic/Modal',\n component: ModalComponent,\n id: 'Modal',\n}"
92
+ },
93
+ {
94
+ "name": "meta",
95
+ "ctype": "miscellaneous",
96
+ "subtype": "variable",
97
+ "file": "projects/software-division-components/src/lib/dvm/cart/cart.stories.ts",
98
+ "deprecated": false,
99
+ "deprecationMessage": "",
100
+ "type": "Meta<CartComponent>",
101
+ "defaultValue": "{\n title: 'Dvm/Cart',\n component: CartComponent,\n id: 'Cart',\n}"
102
+ },
103
+ {
104
+ "name": "meta",
105
+ "ctype": "miscellaneous",
106
+ "subtype": "variable",
107
+ "file": "projects/software-division-components/src/lib/dvm/cart-item/cart.stories.ts",
108
+ "deprecated": false,
109
+ "deprecationMessage": "",
110
+ "type": "Meta<CartItemComponent>",
111
+ "defaultValue": "{\n title: 'Dvm/CartItem',\n component: CartItemComponent,\n id: 'CartItem',\n}"
112
+ },
113
+ {
114
+ "name": "meta",
115
+ "ctype": "miscellaneous",
116
+ "subtype": "variable",
117
+ "file": "projects/software-division-components/src/lib/dvm/legend/legend.stories.ts",
118
+ "deprecated": false,
119
+ "deprecationMessage": "",
120
+ "type": "Meta<LegendComponent>",
121
+ "defaultValue": "{\n title: 'Dvm/Legend',\n component: LegendComponent,\n id: 'Legend',\n}"
122
+ },
123
+ {
124
+ "name": "meta",
125
+ "ctype": "miscellaneous",
126
+ "subtype": "variable",
127
+ "file": "projects/software-division-components/src/lib/dvm/loader/loader.stories.ts",
128
+ "deprecated": false,
129
+ "deprecationMessage": "",
130
+ "type": "Meta<LoaderComponent>",
131
+ "defaultValue": "{\n title: 'Dvm/Loader',\n component: LoaderComponent,\n id: 'Loader',\n}"
132
+ },
133
+ {
134
+ "name": "meta",
135
+ "ctype": "miscellaneous",
136
+ "subtype": "variable",
137
+ "file": "projects/software-division-components/src/lib/dvm/popover/popover.stories.ts",
138
+ "deprecated": false,
139
+ "deprecationMessage": "",
140
+ "type": "Meta<PopoverComponent>",
141
+ "defaultValue": "{\n title: 'Dvm/Popover',\n component: PopoverComponent,\n id: 'Popover',\n}"
142
+ },
143
+ {
144
+ "name": "meta",
145
+ "ctype": "miscellaneous",
146
+ "subtype": "variable",
147
+ "file": "projects/software-division-components/src/lib/dvm/stepper/stepper.stories.ts",
148
+ "deprecated": false,
149
+ "deprecationMessage": "",
150
+ "type": "Meta<StepperComponent>",
151
+ "defaultValue": "{\n title: 'Dvm/Stepper',\n component: StepperComponent,\n id: 'Stepper',\n}"
152
+ },
153
+ {
154
+ "name": "meta",
155
+ "ctype": "miscellaneous",
156
+ "subtype": "variable",
157
+ "file": "projects/software-division-components/src/lib/dvm/ticket-info-item/ticket-info-item.stories.ts",
158
+ "deprecated": false,
159
+ "deprecationMessage": "",
160
+ "type": "Meta<TicketInfoItemComponent>",
161
+ "defaultValue": "{\n title: 'Dvm/TicketInfoItem',\n component: TicketInfoItemComponent,\n id: 'TicketInfoItem',\n}"
162
+ },
163
+ {
164
+ "name": "Outlined",
165
+ "ctype": "miscellaneous",
166
+ "subtype": "variable",
167
+ "file": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
168
+ "deprecated": false,
169
+ "deprecationMessage": "",
170
+ "type": "Story",
171
+ "defaultValue": "{\n args: {\n label: 'Outlined Button',\n outlined: true,\n severity: 'danger',\n tooltip: 'description here',\n },\n}"
172
+ },
173
+ {
174
+ "name": "preview",
175
+ "ctype": "miscellaneous",
176
+ "subtype": "variable",
177
+ "file": "projects/software-division-components/.storybook/preview.ts",
178
+ "deprecated": false,
179
+ "deprecationMessage": "",
180
+ "type": "Preview",
181
+ "defaultValue": "{\n tags: ['autodocs'],\n parameters: {\n controls: {\n matchers: {\n color: /(background|color)$/i,\n date: /Date$/i,\n },\n },\n },\n}"
182
+ },
183
+ {
184
+ "name": "Primary",
185
+ "ctype": "miscellaneous",
186
+ "subtype": "variable",
187
+ "file": "projects/software-division-components/src/lib/backoffice/table/table.stories.ts",
188
+ "deprecated": false,
189
+ "deprecationMessage": "",
190
+ "type": "Story",
191
+ "defaultValue": "{\n args: {\n value: [],\n size: 'normal',\n paginator: false,\n scrollDirection: 'vertical',\n },\n}"
192
+ },
193
+ {
194
+ "name": "Primary",
195
+ "ctype": "miscellaneous",
196
+ "subtype": "variable",
197
+ "file": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
198
+ "deprecated": false,
199
+ "deprecationMessage": "",
200
+ "type": "Story",
201
+ "defaultValue": "{\n args: {\n label: 'Primary Button',\n icon: 'pi pi-check',\n type: 'button',\n iconPos: 'left',\n disabled: false,\n loading: false,\n severity: 'primary',\n rounded: false,\n raised: true,\n outlined: false,\n link: false,\n size: undefined,\n ariaLabel: 'Primary button',\n style: { 'margin-right': '10px' },\n tooltip: 'description here',\n },\n}"
202
+ },
203
+ {
204
+ "name": "Primary",
205
+ "ctype": "miscellaneous",
206
+ "subtype": "variable",
207
+ "file": "projects/software-division-components/src/lib/generic/drawer/drawer.stories.ts",
208
+ "deprecated": false,
209
+ "deprecationMessage": "",
210
+ "type": "Story",
211
+ "defaultValue": "{\n args: {\n label: 'Primary Button',\n icon: 'pi pi-check',\n type: 'button',\n iconPos: 'left',\n disabled: false,\n loading: false,\n severity: 'primary',\n rounded: false,\n raised: true,\n outlined: false,\n link: false,\n size: undefined,\n ariaLabel: 'Primary button',\n style: { 'margin-right': '10px' },\n },\n}"
212
+ },
213
+ {
214
+ "name": "Primary",
215
+ "ctype": "miscellaneous",
216
+ "subtype": "variable",
217
+ "file": "projects/software-division-components/src/lib/generic/modal/modal.stories.ts",
218
+ "deprecated": false,
219
+ "deprecationMessage": "",
220
+ "type": "Story",
221
+ "defaultValue": "{\n args: {\n label: 'Primary Button',\n icon: 'pi pi-check',\n type: 'button',\n iconPos: 'left',\n disabled: false,\n loading: false,\n severity: 'primary',\n rounded: false,\n raised: true,\n outlined: false,\n link: false,\n size: undefined,\n ariaLabel: 'Primary button',\n style: { 'margin-right': '10px' },\n },\n}"
222
+ },
223
+ {
224
+ "name": "Primary",
225
+ "ctype": "miscellaneous",
226
+ "subtype": "variable",
227
+ "file": "projects/software-division-components/src/lib/dvm/cart/cart.stories.ts",
228
+ "deprecated": false,
229
+ "deprecationMessage": "",
230
+ "type": "Story",
231
+ "defaultValue": "{\n args: {\n label: 'Primary Button',\n icon: 'pi pi-check',\n type: 'button',\n iconPos: 'left',\n disabled: false,\n loading: false,\n severity: 'primary',\n rounded: false,\n raised: true,\n outlined: false,\n link: false,\n size: undefined,\n ariaLabel: 'Primary button',\n style: { 'margin-right': '10px' },\n },\n}"
232
+ },
233
+ {
234
+ "name": "Primary",
235
+ "ctype": "miscellaneous",
236
+ "subtype": "variable",
237
+ "file": "projects/software-division-components/src/lib/dvm/cart-item/cart.stories.ts",
238
+ "deprecated": false,
239
+ "deprecationMessage": "",
240
+ "type": "Story",
241
+ "defaultValue": "{\n args: {\n label: 'Primary Button',\n icon: 'pi pi-check',\n type: 'button',\n iconPos: 'left',\n disabled: false,\n loading: false,\n severity: 'primary',\n rounded: false,\n raised: true,\n outlined: false,\n link: false,\n size: undefined,\n ariaLabel: 'Primary button',\n style: { 'margin-right': '10px' },\n },\n}"
242
+ },
243
+ {
244
+ "name": "Primary",
245
+ "ctype": "miscellaneous",
246
+ "subtype": "variable",
247
+ "file": "projects/software-division-components/src/lib/dvm/legend/legend.stories.ts",
248
+ "deprecated": false,
249
+ "deprecationMessage": "",
250
+ "type": "Story",
251
+ "defaultValue": "{\n args: {\n label: 'Primary Button',\n icon: 'pi pi-check',\n type: 'button',\n iconPos: 'left',\n disabled: false,\n loading: false,\n severity: 'primary',\n rounded: false,\n raised: true,\n outlined: false,\n link: false,\n size: undefined,\n ariaLabel: 'Primary button',\n style: { 'margin-right': '10px' },\n },\n}"
252
+ },
253
+ {
254
+ "name": "Primary",
255
+ "ctype": "miscellaneous",
256
+ "subtype": "variable",
257
+ "file": "projects/software-division-components/src/lib/dvm/loader/loader.stories.ts",
258
+ "deprecated": false,
259
+ "deprecationMessage": "",
260
+ "type": "Story",
261
+ "defaultValue": "{\n args: {\n label: 'Primary Button',\n icon: 'pi pi-check',\n type: 'button',\n iconPos: 'left',\n disabled: false,\n loading: false,\n severity: 'primary',\n rounded: false,\n raised: true,\n outlined: false,\n link: false,\n size: undefined,\n ariaLabel: 'Primary button',\n style: { 'margin-right': '10px' },\n },\n}"
262
+ },
263
+ {
264
+ "name": "Primary",
265
+ "ctype": "miscellaneous",
266
+ "subtype": "variable",
267
+ "file": "projects/software-division-components/src/lib/dvm/popover/popover.stories.ts",
268
+ "deprecated": false,
269
+ "deprecationMessage": "",
270
+ "type": "Story",
271
+ "defaultValue": "{\n args: {\n label: 'Primary Button',\n icon: 'pi pi-check',\n type: 'button',\n iconPos: 'left',\n disabled: false,\n loading: false,\n severity: 'primary',\n rounded: false,\n raised: true,\n outlined: false,\n link: false,\n size: undefined,\n ariaLabel: 'Primary button',\n style: { 'margin-right': '10px' },\n },\n}"
272
+ },
273
+ {
274
+ "name": "Primary",
275
+ "ctype": "miscellaneous",
276
+ "subtype": "variable",
277
+ "file": "projects/software-division-components/src/lib/dvm/stepper/stepper.stories.ts",
278
+ "deprecated": false,
279
+ "deprecationMessage": "",
280
+ "type": "Story",
281
+ "defaultValue": "{\n args: {\n label: 'Primary Button',\n icon: 'pi pi-check',\n type: 'button',\n iconPos: 'left',\n disabled: false,\n loading: false,\n severity: 'primary',\n rounded: false,\n raised: true,\n outlined: false,\n link: false,\n size: undefined,\n ariaLabel: 'Primary button',\n style: { 'margin-right': '10px' },\n },\n}"
282
+ },
283
+ {
284
+ "name": "Primary",
285
+ "ctype": "miscellaneous",
286
+ "subtype": "variable",
287
+ "file": "projects/software-division-components/src/lib/dvm/ticket-info-item/ticket-info-item.stories.ts",
288
+ "deprecated": false,
289
+ "deprecationMessage": "",
290
+ "type": "Story",
291
+ "defaultValue": "{\n args: {\n label: 'Primary Button',\n icon: 'pi pi-check',\n type: 'button',\n iconPos: 'left',\n disabled: false,\n loading: false,\n severity: 'primary',\n rounded: false,\n raised: true,\n outlined: false,\n link: false,\n size: undefined,\n ariaLabel: 'Primary button',\n style: { 'margin-right': '10px' },\n },\n}"
292
+ },
293
+ {
294
+ "name": "Rounded",
295
+ "ctype": "miscellaneous",
296
+ "subtype": "variable",
297
+ "file": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
298
+ "deprecated": false,
299
+ "deprecationMessage": "",
300
+ "type": "Story",
301
+ "defaultValue": "{\n args: {\n label: 'Rounded Button',\n rounded: true,\n severity: 'success',\n icon: 'pi pi-user',\n tooltip: 'description here',\n },\n}"
302
+ }
303
+ ],
304
+ "functions": [],
305
+ "typealiases": [
306
+ {
307
+ "name": "Story",
308
+ "ctype": "miscellaneous",
309
+ "subtype": "typealias",
310
+ "rawtype": "StoryObj<TableComponent>",
311
+ "file": "projects/software-division-components/src/lib/backoffice/table/table.stories.ts",
312
+ "deprecated": false,
313
+ "deprecationMessage": "",
314
+ "description": "",
315
+ "kind": 183
316
+ },
317
+ {
318
+ "name": "Story",
319
+ "ctype": "miscellaneous",
320
+ "subtype": "typealias",
321
+ "rawtype": "StoryObj<ButtonComponent>",
322
+ "file": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
323
+ "deprecated": false,
324
+ "deprecationMessage": "",
325
+ "description": "",
326
+ "kind": 183
327
+ },
328
+ {
329
+ "name": "Story",
330
+ "ctype": "miscellaneous",
331
+ "subtype": "typealias",
332
+ "rawtype": "StoryObj<DrawerComponent>",
333
+ "file": "projects/software-division-components/src/lib/generic/drawer/drawer.stories.ts",
334
+ "deprecated": false,
335
+ "deprecationMessage": "",
336
+ "description": "",
337
+ "kind": 183
338
+ },
339
+ {
340
+ "name": "Story",
341
+ "ctype": "miscellaneous",
342
+ "subtype": "typealias",
343
+ "rawtype": "StoryObj<ModalComponent>",
344
+ "file": "projects/software-division-components/src/lib/generic/modal/modal.stories.ts",
345
+ "deprecated": false,
346
+ "deprecationMessage": "",
347
+ "description": "",
348
+ "kind": 183
349
+ },
350
+ {
351
+ "name": "Story",
352
+ "ctype": "miscellaneous",
353
+ "subtype": "typealias",
354
+ "rawtype": "StoryObj<CartComponent>",
355
+ "file": "projects/software-division-components/src/lib/dvm/cart/cart.stories.ts",
356
+ "deprecated": false,
357
+ "deprecationMessage": "",
358
+ "description": "",
359
+ "kind": 183
360
+ },
361
+ {
362
+ "name": "Story",
363
+ "ctype": "miscellaneous",
364
+ "subtype": "typealias",
365
+ "rawtype": "StoryObj<CartItemComponent>",
366
+ "file": "projects/software-division-components/src/lib/dvm/cart-item/cart.stories.ts",
367
+ "deprecated": false,
368
+ "deprecationMessage": "",
369
+ "description": "",
370
+ "kind": 183
371
+ },
372
+ {
373
+ "name": "Story",
374
+ "ctype": "miscellaneous",
375
+ "subtype": "typealias",
376
+ "rawtype": "StoryObj<LegendComponent>",
377
+ "file": "projects/software-division-components/src/lib/dvm/legend/legend.stories.ts",
378
+ "deprecated": false,
379
+ "deprecationMessage": "",
380
+ "description": "",
381
+ "kind": 183
382
+ },
383
+ {
384
+ "name": "Story",
385
+ "ctype": "miscellaneous",
386
+ "subtype": "typealias",
387
+ "rawtype": "StoryObj<LoaderComponent>",
388
+ "file": "projects/software-division-components/src/lib/dvm/loader/loader.stories.ts",
389
+ "deprecated": false,
390
+ "deprecationMessage": "",
391
+ "description": "",
392
+ "kind": 183
393
+ },
394
+ {
395
+ "name": "Story",
396
+ "ctype": "miscellaneous",
397
+ "subtype": "typealias",
398
+ "rawtype": "StoryObj<PopoverComponent>",
399
+ "file": "projects/software-division-components/src/lib/dvm/popover/popover.stories.ts",
400
+ "deprecated": false,
401
+ "deprecationMessage": "",
402
+ "description": "",
403
+ "kind": 183
404
+ },
405
+ {
406
+ "name": "Story",
407
+ "ctype": "miscellaneous",
408
+ "subtype": "typealias",
409
+ "rawtype": "StoryObj<StepperComponent>",
410
+ "file": "projects/software-division-components/src/lib/dvm/stepper/stepper.stories.ts",
411
+ "deprecated": false,
412
+ "deprecationMessage": "",
413
+ "description": "",
414
+ "kind": 183
415
+ },
416
+ {
417
+ "name": "Story",
418
+ "ctype": "miscellaneous",
419
+ "subtype": "typealias",
420
+ "rawtype": "StoryObj<TicketInfoItemComponent>",
421
+ "file": "projects/software-division-components/src/lib/dvm/ticket-info-item/ticket-info-item.stories.ts",
422
+ "deprecated": false,
423
+ "deprecationMessage": "",
424
+ "description": "",
425
+ "kind": 183
426
+ }
427
+ ],
428
+ "enumerations": [],
429
+ "groupedVariables": {
430
+ "projects/software-division-components/src/lib/generic/button/button.stories.ts": [
431
+ {
432
+ "name": "Action",
433
+ "ctype": "miscellaneous",
434
+ "subtype": "variable",
435
+ "file": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
436
+ "deprecated": false,
437
+ "deprecationMessage": "",
438
+ "type": "Story",
439
+ "defaultValue": "{\n args: {\n rounded: true,\n icon: 'pi pi-bookmark',\n tooltip: 'description here',\n },\n}"
440
+ },
441
+ {
442
+ "name": "Disabled",
443
+ "ctype": "miscellaneous",
444
+ "subtype": "variable",
445
+ "file": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
446
+ "deprecated": false,
447
+ "deprecationMessage": "",
448
+ "type": "Story",
449
+ "defaultValue": "{\n args: {\n label: 'Disabled Button',\n disabled: true,\n severity: 'secondary',\n tooltip: 'description here',\n },\n}"
450
+ },
451
+ {
452
+ "name": "Link",
453
+ "ctype": "miscellaneous",
454
+ "subtype": "variable",
455
+ "file": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
456
+ "deprecated": false,
457
+ "deprecationMessage": "",
458
+ "type": "Story",
459
+ "defaultValue": "{\n args: {\n label: 'Link Button',\n link: true,\n severity: 'help',\n tooltip: 'description here',\n },\n}"
460
+ },
461
+ {
462
+ "name": "Loading",
463
+ "ctype": "miscellaneous",
464
+ "subtype": "variable",
465
+ "file": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
466
+ "deprecated": false,
467
+ "deprecationMessage": "",
468
+ "type": "Story",
469
+ "defaultValue": "{\n args: {\n label: 'Loading Button',\n loading: true,\n severity: 'info',\n tooltip: 'description here',\n },\n}"
470
+ },
471
+ {
472
+ "name": "meta",
473
+ "ctype": "miscellaneous",
474
+ "subtype": "variable",
475
+ "file": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
476
+ "deprecated": false,
477
+ "deprecationMessage": "",
478
+ "type": "Meta<ButtonComponent>",
479
+ "defaultValue": "{\n title: 'Generic/Button',\n component: ButtonComponent,\n id: 'Button',\n argTypes: {\n label: { control: 'text', description: 'Label of the button' },\n icon: { control: 'text', description: 'Icon displayed on the button' },\n type: { control: 'text', description: 'Type of the button' },\n iconPos: {\n control: 'radio',\n options: ['left', 'right'],\n description: 'Position of the icon',\n },\n disabled: { control: 'boolean', description: 'Disables the button' },\n loading: { control: 'boolean', description: 'Displays a loading state' },\n severity: {\n control: 'select',\n options: ['primary', 'secondary', 'success', 'info', 'warn', 'danger', 'help', 'contrast'],\n description: 'Style severity of the button',\n },\n rounded: { control: 'boolean', description: 'Applies rounded border radius' },\n raised: { control: 'boolean', description: 'Adds a shadow to indicate elevation' },\n outlined: { control: 'boolean', description: 'Adds an outlined border' },\n link: { control: 'boolean', description: 'Displays the button as a link' },\n size: {\n control: 'radio',\n options: ['small', 'normal', 'large'],\n description: 'Size of the button',\n },\n badge: { control: 'text', description: 'Value of the badge' },\n ariaLabel: { control: 'text', description: 'Aria label for accessibility' },\n style: { control: 'object', description: 'Inline styles for the button' },\n tooltip: { control: 'text', description: 'Tooltip for the button' },\n onClick: { action: 'clicked', description: 'Emits when button is clicked' },\n },\n}"
480
+ },
481
+ {
482
+ "name": "Outlined",
483
+ "ctype": "miscellaneous",
484
+ "subtype": "variable",
485
+ "file": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
486
+ "deprecated": false,
487
+ "deprecationMessage": "",
488
+ "type": "Story",
489
+ "defaultValue": "{\n args: {\n label: 'Outlined Button',\n outlined: true,\n severity: 'danger',\n tooltip: 'description here',\n },\n}"
490
+ },
491
+ {
492
+ "name": "Primary",
493
+ "ctype": "miscellaneous",
494
+ "subtype": "variable",
495
+ "file": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
496
+ "deprecated": false,
497
+ "deprecationMessage": "",
498
+ "type": "Story",
499
+ "defaultValue": "{\n args: {\n label: 'Primary Button',\n icon: 'pi pi-check',\n type: 'button',\n iconPos: 'left',\n disabled: false,\n loading: false,\n severity: 'primary',\n rounded: false,\n raised: true,\n outlined: false,\n link: false,\n size: undefined,\n ariaLabel: 'Primary button',\n style: { 'margin-right': '10px' },\n tooltip: 'description here',\n },\n}"
500
+ },
501
+ {
502
+ "name": "Rounded",
503
+ "ctype": "miscellaneous",
504
+ "subtype": "variable",
505
+ "file": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
506
+ "deprecated": false,
507
+ "deprecationMessage": "",
508
+ "type": "Story",
509
+ "defaultValue": "{\n args: {\n label: 'Rounded Button',\n rounded: true,\n severity: 'success',\n icon: 'pi pi-user',\n tooltip: 'description here',\n },\n}"
510
+ }
511
+ ],
512
+ "projects/software-division-components/src/lib/backoffice/table/table.stories.ts": [
513
+ {
514
+ "name": "meta",
515
+ "ctype": "miscellaneous",
516
+ "subtype": "variable",
517
+ "file": "projects/software-division-components/src/lib/backoffice/table/table.stories.ts",
518
+ "deprecated": false,
519
+ "deprecationMessage": "",
520
+ "type": "Meta<TableComponent>",
521
+ "defaultValue": "{\n title: 'Backoffice/Table',\n decorators: [\n moduleMetadata({\n imports: [TableModule],\n }),\n ],\n component: TableComponent,\n id: 'Table',\n argTypes: {},\n // Use `fn` to spy on the onClick arg, which will appear in the actions panel once invoked: https://storybook.js.org/docs/essentials/actions#action-args\n}"
522
+ },
523
+ {
524
+ "name": "Primary",
525
+ "ctype": "miscellaneous",
526
+ "subtype": "variable",
527
+ "file": "projects/software-division-components/src/lib/backoffice/table/table.stories.ts",
528
+ "deprecated": false,
529
+ "deprecationMessage": "",
530
+ "type": "Story",
531
+ "defaultValue": "{\n args: {\n value: [],\n size: 'normal',\n paginator: false,\n scrollDirection: 'vertical',\n },\n}"
532
+ }
533
+ ],
534
+ "projects/software-division-components/src/lib/generic/drawer/drawer.stories.ts": [
535
+ {
536
+ "name": "meta",
537
+ "ctype": "miscellaneous",
538
+ "subtype": "variable",
539
+ "file": "projects/software-division-components/src/lib/generic/drawer/drawer.stories.ts",
540
+ "deprecated": false,
541
+ "deprecationMessage": "",
542
+ "type": "Meta<DrawerComponent>",
543
+ "defaultValue": "{\n title: 'Generic/Drawer',\n component: DrawerComponent,\n id: 'Drawer',\n}"
544
+ },
545
+ {
546
+ "name": "Primary",
547
+ "ctype": "miscellaneous",
548
+ "subtype": "variable",
549
+ "file": "projects/software-division-components/src/lib/generic/drawer/drawer.stories.ts",
550
+ "deprecated": false,
551
+ "deprecationMessage": "",
552
+ "type": "Story",
553
+ "defaultValue": "{\n args: {\n label: 'Primary Button',\n icon: 'pi pi-check',\n type: 'button',\n iconPos: 'left',\n disabled: false,\n loading: false,\n severity: 'primary',\n rounded: false,\n raised: true,\n outlined: false,\n link: false,\n size: undefined,\n ariaLabel: 'Primary button',\n style: { 'margin-right': '10px' },\n },\n}"
554
+ }
555
+ ],
556
+ "projects/software-division-components/src/lib/generic/modal/modal.stories.ts": [
557
+ {
558
+ "name": "meta",
559
+ "ctype": "miscellaneous",
560
+ "subtype": "variable",
561
+ "file": "projects/software-division-components/src/lib/generic/modal/modal.stories.ts",
562
+ "deprecated": false,
563
+ "deprecationMessage": "",
564
+ "type": "Meta<ModalComponent>",
565
+ "defaultValue": "{\n title: 'Generic/Modal',\n component: ModalComponent,\n id: 'Modal',\n}"
566
+ },
567
+ {
568
+ "name": "Primary",
569
+ "ctype": "miscellaneous",
570
+ "subtype": "variable",
571
+ "file": "projects/software-division-components/src/lib/generic/modal/modal.stories.ts",
572
+ "deprecated": false,
573
+ "deprecationMessage": "",
574
+ "type": "Story",
575
+ "defaultValue": "{\n args: {\n label: 'Primary Button',\n icon: 'pi pi-check',\n type: 'button',\n iconPos: 'left',\n disabled: false,\n loading: false,\n severity: 'primary',\n rounded: false,\n raised: true,\n outlined: false,\n link: false,\n size: undefined,\n ariaLabel: 'Primary button',\n style: { 'margin-right': '10px' },\n },\n}"
576
+ }
577
+ ],
578
+ "projects/software-division-components/src/lib/dvm/cart/cart.stories.ts": [
579
+ {
580
+ "name": "meta",
581
+ "ctype": "miscellaneous",
582
+ "subtype": "variable",
583
+ "file": "projects/software-division-components/src/lib/dvm/cart/cart.stories.ts",
584
+ "deprecated": false,
585
+ "deprecationMessage": "",
586
+ "type": "Meta<CartComponent>",
587
+ "defaultValue": "{\n title: 'Dvm/Cart',\n component: CartComponent,\n id: 'Cart',\n}"
588
+ },
589
+ {
590
+ "name": "Primary",
591
+ "ctype": "miscellaneous",
592
+ "subtype": "variable",
593
+ "file": "projects/software-division-components/src/lib/dvm/cart/cart.stories.ts",
594
+ "deprecated": false,
595
+ "deprecationMessage": "",
596
+ "type": "Story",
597
+ "defaultValue": "{\n args: {\n label: 'Primary Button',\n icon: 'pi pi-check',\n type: 'button',\n iconPos: 'left',\n disabled: false,\n loading: false,\n severity: 'primary',\n rounded: false,\n raised: true,\n outlined: false,\n link: false,\n size: undefined,\n ariaLabel: 'Primary button',\n style: { 'margin-right': '10px' },\n },\n}"
598
+ }
599
+ ],
600
+ "projects/software-division-components/src/lib/dvm/cart-item/cart.stories.ts": [
601
+ {
602
+ "name": "meta",
603
+ "ctype": "miscellaneous",
604
+ "subtype": "variable",
605
+ "file": "projects/software-division-components/src/lib/dvm/cart-item/cart.stories.ts",
606
+ "deprecated": false,
607
+ "deprecationMessage": "",
608
+ "type": "Meta<CartItemComponent>",
609
+ "defaultValue": "{\n title: 'Dvm/CartItem',\n component: CartItemComponent,\n id: 'CartItem',\n}"
610
+ },
611
+ {
612
+ "name": "Primary",
613
+ "ctype": "miscellaneous",
614
+ "subtype": "variable",
615
+ "file": "projects/software-division-components/src/lib/dvm/cart-item/cart.stories.ts",
616
+ "deprecated": false,
617
+ "deprecationMessage": "",
618
+ "type": "Story",
619
+ "defaultValue": "{\n args: {\n label: 'Primary Button',\n icon: 'pi pi-check',\n type: 'button',\n iconPos: 'left',\n disabled: false,\n loading: false,\n severity: 'primary',\n rounded: false,\n raised: true,\n outlined: false,\n link: false,\n size: undefined,\n ariaLabel: 'Primary button',\n style: { 'margin-right': '10px' },\n },\n}"
620
+ }
621
+ ],
622
+ "projects/software-division-components/src/lib/dvm/legend/legend.stories.ts": [
623
+ {
624
+ "name": "meta",
625
+ "ctype": "miscellaneous",
626
+ "subtype": "variable",
627
+ "file": "projects/software-division-components/src/lib/dvm/legend/legend.stories.ts",
628
+ "deprecated": false,
629
+ "deprecationMessage": "",
630
+ "type": "Meta<LegendComponent>",
631
+ "defaultValue": "{\n title: 'Dvm/Legend',\n component: LegendComponent,\n id: 'Legend',\n}"
632
+ },
633
+ {
634
+ "name": "Primary",
635
+ "ctype": "miscellaneous",
636
+ "subtype": "variable",
637
+ "file": "projects/software-division-components/src/lib/dvm/legend/legend.stories.ts",
638
+ "deprecated": false,
639
+ "deprecationMessage": "",
640
+ "type": "Story",
641
+ "defaultValue": "{\n args: {\n label: 'Primary Button',\n icon: 'pi pi-check',\n type: 'button',\n iconPos: 'left',\n disabled: false,\n loading: false,\n severity: 'primary',\n rounded: false,\n raised: true,\n outlined: false,\n link: false,\n size: undefined,\n ariaLabel: 'Primary button',\n style: { 'margin-right': '10px' },\n },\n}"
642
+ }
643
+ ],
644
+ "projects/software-division-components/src/lib/dvm/loader/loader.stories.ts": [
645
+ {
646
+ "name": "meta",
647
+ "ctype": "miscellaneous",
648
+ "subtype": "variable",
649
+ "file": "projects/software-division-components/src/lib/dvm/loader/loader.stories.ts",
650
+ "deprecated": false,
651
+ "deprecationMessage": "",
652
+ "type": "Meta<LoaderComponent>",
653
+ "defaultValue": "{\n title: 'Dvm/Loader',\n component: LoaderComponent,\n id: 'Loader',\n}"
654
+ },
655
+ {
656
+ "name": "Primary",
657
+ "ctype": "miscellaneous",
658
+ "subtype": "variable",
659
+ "file": "projects/software-division-components/src/lib/dvm/loader/loader.stories.ts",
660
+ "deprecated": false,
661
+ "deprecationMessage": "",
662
+ "type": "Story",
663
+ "defaultValue": "{\n args: {\n label: 'Primary Button',\n icon: 'pi pi-check',\n type: 'button',\n iconPos: 'left',\n disabled: false,\n loading: false,\n severity: 'primary',\n rounded: false,\n raised: true,\n outlined: false,\n link: false,\n size: undefined,\n ariaLabel: 'Primary button',\n style: { 'margin-right': '10px' },\n },\n}"
664
+ }
665
+ ],
666
+ "projects/software-division-components/src/lib/dvm/popover/popover.stories.ts": [
667
+ {
668
+ "name": "meta",
669
+ "ctype": "miscellaneous",
670
+ "subtype": "variable",
671
+ "file": "projects/software-division-components/src/lib/dvm/popover/popover.stories.ts",
672
+ "deprecated": false,
673
+ "deprecationMessage": "",
674
+ "type": "Meta<PopoverComponent>",
675
+ "defaultValue": "{\n title: 'Dvm/Popover',\n component: PopoverComponent,\n id: 'Popover',\n}"
676
+ },
677
+ {
678
+ "name": "Primary",
679
+ "ctype": "miscellaneous",
680
+ "subtype": "variable",
681
+ "file": "projects/software-division-components/src/lib/dvm/popover/popover.stories.ts",
682
+ "deprecated": false,
683
+ "deprecationMessage": "",
684
+ "type": "Story",
685
+ "defaultValue": "{\n args: {\n label: 'Primary Button',\n icon: 'pi pi-check',\n type: 'button',\n iconPos: 'left',\n disabled: false,\n loading: false,\n severity: 'primary',\n rounded: false,\n raised: true,\n outlined: false,\n link: false,\n size: undefined,\n ariaLabel: 'Primary button',\n style: { 'margin-right': '10px' },\n },\n}"
686
+ }
687
+ ],
688
+ "projects/software-division-components/src/lib/dvm/stepper/stepper.stories.ts": [
689
+ {
690
+ "name": "meta",
691
+ "ctype": "miscellaneous",
692
+ "subtype": "variable",
693
+ "file": "projects/software-division-components/src/lib/dvm/stepper/stepper.stories.ts",
694
+ "deprecated": false,
695
+ "deprecationMessage": "",
696
+ "type": "Meta<StepperComponent>",
697
+ "defaultValue": "{\n title: 'Dvm/Stepper',\n component: StepperComponent,\n id: 'Stepper',\n}"
698
+ },
699
+ {
700
+ "name": "Primary",
701
+ "ctype": "miscellaneous",
702
+ "subtype": "variable",
703
+ "file": "projects/software-division-components/src/lib/dvm/stepper/stepper.stories.ts",
704
+ "deprecated": false,
705
+ "deprecationMessage": "",
706
+ "type": "Story",
707
+ "defaultValue": "{\n args: {\n label: 'Primary Button',\n icon: 'pi pi-check',\n type: 'button',\n iconPos: 'left',\n disabled: false,\n loading: false,\n severity: 'primary',\n rounded: false,\n raised: true,\n outlined: false,\n link: false,\n size: undefined,\n ariaLabel: 'Primary button',\n style: { 'margin-right': '10px' },\n },\n}"
708
+ }
709
+ ],
710
+ "projects/software-division-components/src/lib/dvm/ticket-info-item/ticket-info-item.stories.ts": [
711
+ {
712
+ "name": "meta",
713
+ "ctype": "miscellaneous",
714
+ "subtype": "variable",
715
+ "file": "projects/software-division-components/src/lib/dvm/ticket-info-item/ticket-info-item.stories.ts",
716
+ "deprecated": false,
717
+ "deprecationMessage": "",
718
+ "type": "Meta<TicketInfoItemComponent>",
719
+ "defaultValue": "{\n title: 'Dvm/TicketInfoItem',\n component: TicketInfoItemComponent,\n id: 'TicketInfoItem',\n}"
720
+ },
721
+ {
722
+ "name": "Primary",
723
+ "ctype": "miscellaneous",
724
+ "subtype": "variable",
725
+ "file": "projects/software-division-components/src/lib/dvm/ticket-info-item/ticket-info-item.stories.ts",
726
+ "deprecated": false,
727
+ "deprecationMessage": "",
728
+ "type": "Story",
729
+ "defaultValue": "{\n args: {\n label: 'Primary Button',\n icon: 'pi pi-check',\n type: 'button',\n iconPos: 'left',\n disabled: false,\n loading: false,\n severity: 'primary',\n rounded: false,\n raised: true,\n outlined: false,\n link: false,\n size: undefined,\n ariaLabel: 'Primary button',\n style: { 'margin-right': '10px' },\n },\n}"
730
+ }
731
+ ],
732
+ "projects/software-division-components/.storybook/preview.ts": [
733
+ {
734
+ "name": "preview",
735
+ "ctype": "miscellaneous",
736
+ "subtype": "variable",
737
+ "file": "projects/software-division-components/.storybook/preview.ts",
738
+ "deprecated": false,
739
+ "deprecationMessage": "",
740
+ "type": "Preview",
741
+ "defaultValue": "{\n tags: ['autodocs'],\n parameters: {\n controls: {\n matchers: {\n color: /(background|color)$/i,\n date: /Date$/i,\n },\n },\n },\n}"
742
+ }
743
+ ]
744
+ },
745
+ "groupedFunctions": {},
746
+ "groupedEnumerations": {},
747
+ "groupedTypeAliases": {
748
+ "projects/software-division-components/src/lib/backoffice/table/table.stories.ts": [
749
+ {
750
+ "name": "Story",
751
+ "ctype": "miscellaneous",
752
+ "subtype": "typealias",
753
+ "rawtype": "StoryObj<TableComponent>",
754
+ "file": "projects/software-division-components/src/lib/backoffice/table/table.stories.ts",
755
+ "deprecated": false,
756
+ "deprecationMessage": "",
757
+ "description": "",
758
+ "kind": 183
759
+ }
760
+ ],
761
+ "projects/software-division-components/src/lib/generic/button/button.stories.ts": [
762
+ {
763
+ "name": "Story",
764
+ "ctype": "miscellaneous",
765
+ "subtype": "typealias",
766
+ "rawtype": "StoryObj<ButtonComponent>",
767
+ "file": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
768
+ "deprecated": false,
769
+ "deprecationMessage": "",
770
+ "description": "",
771
+ "kind": 183
772
+ }
773
+ ],
774
+ "projects/software-division-components/src/lib/generic/drawer/drawer.stories.ts": [
775
+ {
776
+ "name": "Story",
777
+ "ctype": "miscellaneous",
778
+ "subtype": "typealias",
779
+ "rawtype": "StoryObj<DrawerComponent>",
780
+ "file": "projects/software-division-components/src/lib/generic/drawer/drawer.stories.ts",
781
+ "deprecated": false,
782
+ "deprecationMessage": "",
783
+ "description": "",
784
+ "kind": 183
785
+ }
786
+ ],
787
+ "projects/software-division-components/src/lib/generic/modal/modal.stories.ts": [
788
+ {
789
+ "name": "Story",
790
+ "ctype": "miscellaneous",
791
+ "subtype": "typealias",
792
+ "rawtype": "StoryObj<ModalComponent>",
793
+ "file": "projects/software-division-components/src/lib/generic/modal/modal.stories.ts",
794
+ "deprecated": false,
795
+ "deprecationMessage": "",
796
+ "description": "",
797
+ "kind": 183
798
+ }
799
+ ],
800
+ "projects/software-division-components/src/lib/dvm/cart/cart.stories.ts": [
801
+ {
802
+ "name": "Story",
803
+ "ctype": "miscellaneous",
804
+ "subtype": "typealias",
805
+ "rawtype": "StoryObj<CartComponent>",
806
+ "file": "projects/software-division-components/src/lib/dvm/cart/cart.stories.ts",
807
+ "deprecated": false,
808
+ "deprecationMessage": "",
809
+ "description": "",
810
+ "kind": 183
811
+ }
812
+ ],
813
+ "projects/software-division-components/src/lib/dvm/cart-item/cart.stories.ts": [
814
+ {
815
+ "name": "Story",
816
+ "ctype": "miscellaneous",
817
+ "subtype": "typealias",
818
+ "rawtype": "StoryObj<CartItemComponent>",
819
+ "file": "projects/software-division-components/src/lib/dvm/cart-item/cart.stories.ts",
820
+ "deprecated": false,
821
+ "deprecationMessage": "",
822
+ "description": "",
823
+ "kind": 183
824
+ }
825
+ ],
826
+ "projects/software-division-components/src/lib/dvm/legend/legend.stories.ts": [
827
+ {
828
+ "name": "Story",
829
+ "ctype": "miscellaneous",
830
+ "subtype": "typealias",
831
+ "rawtype": "StoryObj<LegendComponent>",
832
+ "file": "projects/software-division-components/src/lib/dvm/legend/legend.stories.ts",
833
+ "deprecated": false,
834
+ "deprecationMessage": "",
835
+ "description": "",
836
+ "kind": 183
837
+ }
838
+ ],
839
+ "projects/software-division-components/src/lib/dvm/loader/loader.stories.ts": [
840
+ {
841
+ "name": "Story",
842
+ "ctype": "miscellaneous",
843
+ "subtype": "typealias",
844
+ "rawtype": "StoryObj<LoaderComponent>",
845
+ "file": "projects/software-division-components/src/lib/dvm/loader/loader.stories.ts",
846
+ "deprecated": false,
847
+ "deprecationMessage": "",
848
+ "description": "",
849
+ "kind": 183
850
+ }
851
+ ],
852
+ "projects/software-division-components/src/lib/dvm/popover/popover.stories.ts": [
853
+ {
854
+ "name": "Story",
855
+ "ctype": "miscellaneous",
856
+ "subtype": "typealias",
857
+ "rawtype": "StoryObj<PopoverComponent>",
858
+ "file": "projects/software-division-components/src/lib/dvm/popover/popover.stories.ts",
859
+ "deprecated": false,
860
+ "deprecationMessage": "",
861
+ "description": "",
862
+ "kind": 183
863
+ }
864
+ ],
865
+ "projects/software-division-components/src/lib/dvm/stepper/stepper.stories.ts": [
866
+ {
867
+ "name": "Story",
868
+ "ctype": "miscellaneous",
869
+ "subtype": "typealias",
870
+ "rawtype": "StoryObj<StepperComponent>",
871
+ "file": "projects/software-division-components/src/lib/dvm/stepper/stepper.stories.ts",
872
+ "deprecated": false,
873
+ "deprecationMessage": "",
874
+ "description": "",
875
+ "kind": 183
876
+ }
877
+ ],
878
+ "projects/software-division-components/src/lib/dvm/ticket-info-item/ticket-info-item.stories.ts": [
879
+ {
880
+ "name": "Story",
881
+ "ctype": "miscellaneous",
882
+ "subtype": "typealias",
883
+ "rawtype": "StoryObj<TicketInfoItemComponent>",
884
+ "file": "projects/software-division-components/src/lib/dvm/ticket-info-item/ticket-info-item.stories.ts",
885
+ "deprecated": false,
886
+ "deprecationMessage": "",
887
+ "description": "",
888
+ "kind": 183
889
+ }
890
+ ]
891
+ }
892
+ },
893
+ "routes": [],
894
+ "coverage": {
895
+ "count": 0,
896
+ "status": "low",
897
+ "files": [
898
+ {
899
+ "filePath": "projects/software-division-components/.storybook/preview.ts",
900
+ "type": "variable",
901
+ "linktype": "miscellaneous",
902
+ "linksubtype": "variable",
903
+ "name": "preview",
904
+ "coveragePercent": 0,
905
+ "coverageCount": "0/1",
906
+ "status": "low"
907
+ },
908
+ {
909
+ "filePath": "projects/software-division-components/src/lib/backoffice/table/table.stories.ts",
910
+ "type": "variable",
911
+ "linktype": "miscellaneous",
912
+ "linksubtype": "variable",
913
+ "name": "meta",
914
+ "coveragePercent": 0,
915
+ "coverageCount": "0/1",
916
+ "status": "low"
917
+ },
918
+ {
919
+ "filePath": "projects/software-division-components/src/lib/backoffice/table/table.stories.ts",
920
+ "type": "variable",
921
+ "linktype": "miscellaneous",
922
+ "linksubtype": "variable",
923
+ "name": "Primary",
924
+ "coveragePercent": 0,
925
+ "coverageCount": "0/1",
926
+ "status": "low"
927
+ },
928
+ {
929
+ "filePath": "projects/software-division-components/src/lib/backoffice/table/table.stories.ts",
930
+ "type": "type alias",
931
+ "linktype": "miscellaneous",
932
+ "linksubtype": "typealias",
933
+ "name": "Story",
934
+ "coveragePercent": 0,
935
+ "coverageCount": "0/1",
936
+ "status": "low"
937
+ },
938
+ {
939
+ "filePath": "projects/software-division-components/src/lib/dvm/cart-item/cart.stories.ts",
940
+ "type": "variable",
941
+ "linktype": "miscellaneous",
942
+ "linksubtype": "variable",
943
+ "name": "meta",
944
+ "coveragePercent": 0,
945
+ "coverageCount": "0/1",
946
+ "status": "low"
947
+ },
948
+ {
949
+ "filePath": "projects/software-division-components/src/lib/dvm/cart-item/cart.stories.ts",
950
+ "type": "variable",
951
+ "linktype": "miscellaneous",
952
+ "linksubtype": "variable",
953
+ "name": "Primary",
954
+ "coveragePercent": 0,
955
+ "coverageCount": "0/1",
956
+ "status": "low"
957
+ },
958
+ {
959
+ "filePath": "projects/software-division-components/src/lib/dvm/cart-item/cart.stories.ts",
960
+ "type": "type alias",
961
+ "linktype": "miscellaneous",
962
+ "linksubtype": "typealias",
963
+ "name": "Story",
964
+ "coveragePercent": 0,
965
+ "coverageCount": "0/1",
966
+ "status": "low"
967
+ },
968
+ {
969
+ "filePath": "projects/software-division-components/src/lib/dvm/cart/cart.stories.ts",
970
+ "type": "variable",
971
+ "linktype": "miscellaneous",
972
+ "linksubtype": "variable",
973
+ "name": "meta",
974
+ "coveragePercent": 0,
975
+ "coverageCount": "0/1",
976
+ "status": "low"
977
+ },
978
+ {
979
+ "filePath": "projects/software-division-components/src/lib/dvm/cart/cart.stories.ts",
980
+ "type": "variable",
981
+ "linktype": "miscellaneous",
982
+ "linksubtype": "variable",
983
+ "name": "Primary",
984
+ "coveragePercent": 0,
985
+ "coverageCount": "0/1",
986
+ "status": "low"
987
+ },
988
+ {
989
+ "filePath": "projects/software-division-components/src/lib/dvm/cart/cart.stories.ts",
990
+ "type": "type alias",
991
+ "linktype": "miscellaneous",
992
+ "linksubtype": "typealias",
993
+ "name": "Story",
994
+ "coveragePercent": 0,
995
+ "coverageCount": "0/1",
996
+ "status": "low"
997
+ },
998
+ {
999
+ "filePath": "projects/software-division-components/src/lib/dvm/legend/legend.stories.ts",
1000
+ "type": "variable",
1001
+ "linktype": "miscellaneous",
1002
+ "linksubtype": "variable",
1003
+ "name": "meta",
1004
+ "coveragePercent": 0,
1005
+ "coverageCount": "0/1",
1006
+ "status": "low"
1007
+ },
1008
+ {
1009
+ "filePath": "projects/software-division-components/src/lib/dvm/legend/legend.stories.ts",
1010
+ "type": "variable",
1011
+ "linktype": "miscellaneous",
1012
+ "linksubtype": "variable",
1013
+ "name": "Primary",
1014
+ "coveragePercent": 0,
1015
+ "coverageCount": "0/1",
1016
+ "status": "low"
1017
+ },
1018
+ {
1019
+ "filePath": "projects/software-division-components/src/lib/dvm/legend/legend.stories.ts",
1020
+ "type": "type alias",
1021
+ "linktype": "miscellaneous",
1022
+ "linksubtype": "typealias",
1023
+ "name": "Story",
1024
+ "coveragePercent": 0,
1025
+ "coverageCount": "0/1",
1026
+ "status": "low"
1027
+ },
1028
+ {
1029
+ "filePath": "projects/software-division-components/src/lib/dvm/loader/loader.stories.ts",
1030
+ "type": "variable",
1031
+ "linktype": "miscellaneous",
1032
+ "linksubtype": "variable",
1033
+ "name": "meta",
1034
+ "coveragePercent": 0,
1035
+ "coverageCount": "0/1",
1036
+ "status": "low"
1037
+ },
1038
+ {
1039
+ "filePath": "projects/software-division-components/src/lib/dvm/loader/loader.stories.ts",
1040
+ "type": "variable",
1041
+ "linktype": "miscellaneous",
1042
+ "linksubtype": "variable",
1043
+ "name": "Primary",
1044
+ "coveragePercent": 0,
1045
+ "coverageCount": "0/1",
1046
+ "status": "low"
1047
+ },
1048
+ {
1049
+ "filePath": "projects/software-division-components/src/lib/dvm/loader/loader.stories.ts",
1050
+ "type": "type alias",
1051
+ "linktype": "miscellaneous",
1052
+ "linksubtype": "typealias",
1053
+ "name": "Story",
1054
+ "coveragePercent": 0,
1055
+ "coverageCount": "0/1",
1056
+ "status": "low"
1057
+ },
1058
+ {
1059
+ "filePath": "projects/software-division-components/src/lib/dvm/popover/popover.stories.ts",
1060
+ "type": "variable",
1061
+ "linktype": "miscellaneous",
1062
+ "linksubtype": "variable",
1063
+ "name": "meta",
1064
+ "coveragePercent": 0,
1065
+ "coverageCount": "0/1",
1066
+ "status": "low"
1067
+ },
1068
+ {
1069
+ "filePath": "projects/software-division-components/src/lib/dvm/popover/popover.stories.ts",
1070
+ "type": "variable",
1071
+ "linktype": "miscellaneous",
1072
+ "linksubtype": "variable",
1073
+ "name": "Primary",
1074
+ "coveragePercent": 0,
1075
+ "coverageCount": "0/1",
1076
+ "status": "low"
1077
+ },
1078
+ {
1079
+ "filePath": "projects/software-division-components/src/lib/dvm/popover/popover.stories.ts",
1080
+ "type": "type alias",
1081
+ "linktype": "miscellaneous",
1082
+ "linksubtype": "typealias",
1083
+ "name": "Story",
1084
+ "coveragePercent": 0,
1085
+ "coverageCount": "0/1",
1086
+ "status": "low"
1087
+ },
1088
+ {
1089
+ "filePath": "projects/software-division-components/src/lib/dvm/stepper/stepper.stories.ts",
1090
+ "type": "variable",
1091
+ "linktype": "miscellaneous",
1092
+ "linksubtype": "variable",
1093
+ "name": "meta",
1094
+ "coveragePercent": 0,
1095
+ "coverageCount": "0/1",
1096
+ "status": "low"
1097
+ },
1098
+ {
1099
+ "filePath": "projects/software-division-components/src/lib/dvm/stepper/stepper.stories.ts",
1100
+ "type": "variable",
1101
+ "linktype": "miscellaneous",
1102
+ "linksubtype": "variable",
1103
+ "name": "Primary",
1104
+ "coveragePercent": 0,
1105
+ "coverageCount": "0/1",
1106
+ "status": "low"
1107
+ },
1108
+ {
1109
+ "filePath": "projects/software-division-components/src/lib/dvm/stepper/stepper.stories.ts",
1110
+ "type": "type alias",
1111
+ "linktype": "miscellaneous",
1112
+ "linksubtype": "typealias",
1113
+ "name": "Story",
1114
+ "coveragePercent": 0,
1115
+ "coverageCount": "0/1",
1116
+ "status": "low"
1117
+ },
1118
+ {
1119
+ "filePath": "projects/software-division-components/src/lib/dvm/ticket-info-item/ticket-info-item.stories.ts",
1120
+ "type": "variable",
1121
+ "linktype": "miscellaneous",
1122
+ "linksubtype": "variable",
1123
+ "name": "meta",
1124
+ "coveragePercent": 0,
1125
+ "coverageCount": "0/1",
1126
+ "status": "low"
1127
+ },
1128
+ {
1129
+ "filePath": "projects/software-division-components/src/lib/dvm/ticket-info-item/ticket-info-item.stories.ts",
1130
+ "type": "variable",
1131
+ "linktype": "miscellaneous",
1132
+ "linksubtype": "variable",
1133
+ "name": "Primary",
1134
+ "coveragePercent": 0,
1135
+ "coverageCount": "0/1",
1136
+ "status": "low"
1137
+ },
1138
+ {
1139
+ "filePath": "projects/software-division-components/src/lib/dvm/ticket-info-item/ticket-info-item.stories.ts",
1140
+ "type": "type alias",
1141
+ "linktype": "miscellaneous",
1142
+ "linksubtype": "typealias",
1143
+ "name": "Story",
1144
+ "coveragePercent": 0,
1145
+ "coverageCount": "0/1",
1146
+ "status": "low"
1147
+ },
1148
+ {
1149
+ "filePath": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
1150
+ "type": "variable",
1151
+ "linktype": "miscellaneous",
1152
+ "linksubtype": "variable",
1153
+ "name": "Action",
1154
+ "coveragePercent": 0,
1155
+ "coverageCount": "0/1",
1156
+ "status": "low"
1157
+ },
1158
+ {
1159
+ "filePath": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
1160
+ "type": "variable",
1161
+ "linktype": "miscellaneous",
1162
+ "linksubtype": "variable",
1163
+ "name": "Disabled",
1164
+ "coveragePercent": 0,
1165
+ "coverageCount": "0/1",
1166
+ "status": "low"
1167
+ },
1168
+ {
1169
+ "filePath": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
1170
+ "type": "variable",
1171
+ "linktype": "miscellaneous",
1172
+ "linksubtype": "variable",
1173
+ "name": "Link",
1174
+ "coveragePercent": 0,
1175
+ "coverageCount": "0/1",
1176
+ "status": "low"
1177
+ },
1178
+ {
1179
+ "filePath": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
1180
+ "type": "variable",
1181
+ "linktype": "miscellaneous",
1182
+ "linksubtype": "variable",
1183
+ "name": "Loading",
1184
+ "coveragePercent": 0,
1185
+ "coverageCount": "0/1",
1186
+ "status": "low"
1187
+ },
1188
+ {
1189
+ "filePath": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
1190
+ "type": "variable",
1191
+ "linktype": "miscellaneous",
1192
+ "linksubtype": "variable",
1193
+ "name": "meta",
1194
+ "coveragePercent": 0,
1195
+ "coverageCount": "0/1",
1196
+ "status": "low"
1197
+ },
1198
+ {
1199
+ "filePath": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
1200
+ "type": "variable",
1201
+ "linktype": "miscellaneous",
1202
+ "linksubtype": "variable",
1203
+ "name": "Outlined",
1204
+ "coveragePercent": 0,
1205
+ "coverageCount": "0/1",
1206
+ "status": "low"
1207
+ },
1208
+ {
1209
+ "filePath": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
1210
+ "type": "variable",
1211
+ "linktype": "miscellaneous",
1212
+ "linksubtype": "variable",
1213
+ "name": "Primary",
1214
+ "coveragePercent": 0,
1215
+ "coverageCount": "0/1",
1216
+ "status": "low"
1217
+ },
1218
+ {
1219
+ "filePath": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
1220
+ "type": "variable",
1221
+ "linktype": "miscellaneous",
1222
+ "linksubtype": "variable",
1223
+ "name": "Rounded",
1224
+ "coveragePercent": 0,
1225
+ "coverageCount": "0/1",
1226
+ "status": "low"
1227
+ },
1228
+ {
1229
+ "filePath": "projects/software-division-components/src/lib/generic/button/button.stories.ts",
1230
+ "type": "type alias",
1231
+ "linktype": "miscellaneous",
1232
+ "linksubtype": "typealias",
1233
+ "name": "Story",
1234
+ "coveragePercent": 0,
1235
+ "coverageCount": "0/1",
1236
+ "status": "low"
1237
+ },
1238
+ {
1239
+ "filePath": "projects/software-division-components/src/lib/generic/drawer/drawer.stories.ts",
1240
+ "type": "variable",
1241
+ "linktype": "miscellaneous",
1242
+ "linksubtype": "variable",
1243
+ "name": "meta",
1244
+ "coveragePercent": 0,
1245
+ "coverageCount": "0/1",
1246
+ "status": "low"
1247
+ },
1248
+ {
1249
+ "filePath": "projects/software-division-components/src/lib/generic/drawer/drawer.stories.ts",
1250
+ "type": "variable",
1251
+ "linktype": "miscellaneous",
1252
+ "linksubtype": "variable",
1253
+ "name": "Primary",
1254
+ "coveragePercent": 0,
1255
+ "coverageCount": "0/1",
1256
+ "status": "low"
1257
+ },
1258
+ {
1259
+ "filePath": "projects/software-division-components/src/lib/generic/drawer/drawer.stories.ts",
1260
+ "type": "type alias",
1261
+ "linktype": "miscellaneous",
1262
+ "linksubtype": "typealias",
1263
+ "name": "Story",
1264
+ "coveragePercent": 0,
1265
+ "coverageCount": "0/1",
1266
+ "status": "low"
1267
+ },
1268
+ {
1269
+ "filePath": "projects/software-division-components/src/lib/generic/modal/modal.stories.ts",
1270
+ "type": "variable",
1271
+ "linktype": "miscellaneous",
1272
+ "linksubtype": "variable",
1273
+ "name": "meta",
1274
+ "coveragePercent": 0,
1275
+ "coverageCount": "0/1",
1276
+ "status": "low"
1277
+ },
1278
+ {
1279
+ "filePath": "projects/software-division-components/src/lib/generic/modal/modal.stories.ts",
1280
+ "type": "variable",
1281
+ "linktype": "miscellaneous",
1282
+ "linksubtype": "variable",
1283
+ "name": "Primary",
1284
+ "coveragePercent": 0,
1285
+ "coverageCount": "0/1",
1286
+ "status": "low"
1287
+ },
1288
+ {
1289
+ "filePath": "projects/software-division-components/src/lib/generic/modal/modal.stories.ts",
1290
+ "type": "type alias",
1291
+ "linktype": "miscellaneous",
1292
+ "linksubtype": "typealias",
1293
+ "name": "Story",
1294
+ "coveragePercent": 0,
1295
+ "coverageCount": "0/1",
1296
+ "status": "low"
1297
+ }
1298
+ ]
1299
+ }
1300
+ }