@mortensg/k-plus 0.1.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 (48) hide show
  1. package/.storybook/main.ts +15 -0
  2. package/.storybook/preview.ts +17 -0
  3. package/.storybook/tsconfig.json +11 -0
  4. package/.storybook/typings.d.ts +4 -0
  5. package/CHANGELOG.md +17 -0
  6. package/README.md +63 -0
  7. package/documentation.json +692 -0
  8. package/eslint.config.js +35 -0
  9. package/ng-package.json +7 -0
  10. package/package.json +15 -0
  11. package/src/lib/button/button.html +6 -0
  12. package/src/lib/button/button.scss +70 -0
  13. package/src/lib/button/button.spec.ts +23 -0
  14. package/src/lib/button/button.stories.ts +43 -0
  15. package/src/lib/button/button.ts +35 -0
  16. package/src/lib/k-plus.spec.ts +23 -0
  17. package/src/lib/k-plus.ts +15 -0
  18. package/src/public-api.ts +5 -0
  19. package/src/stories/Configure.mdx +364 -0
  20. package/src/stories/assets/accessibility.png +0 -0
  21. package/src/stories/assets/accessibility.svg +1 -0
  22. package/src/stories/assets/addon-library.png +0 -0
  23. package/src/stories/assets/assets.png +0 -0
  24. package/src/stories/assets/avif-test-image.avif +0 -0
  25. package/src/stories/assets/context.png +0 -0
  26. package/src/stories/assets/discord.svg +1 -0
  27. package/src/stories/assets/docs.png +0 -0
  28. package/src/stories/assets/figma-plugin.png +0 -0
  29. package/src/stories/assets/github.svg +1 -0
  30. package/src/stories/assets/share.png +0 -0
  31. package/src/stories/assets/styling.png +0 -0
  32. package/src/stories/assets/testing.png +0 -0
  33. package/src/stories/assets/theming.png +0 -0
  34. package/src/stories/assets/tutorials.svg +1 -0
  35. package/src/stories/assets/youtube.svg +1 -0
  36. package/src/stories/button.component.ts +48 -0
  37. package/src/stories/button.css +30 -0
  38. package/src/stories/button.stories.ts +49 -0
  39. package/src/stories/header.component.ts +76 -0
  40. package/src/stories/header.css +32 -0
  41. package/src/stories/header.stories.ts +33 -0
  42. package/src/stories/page.component.ts +82 -0
  43. package/src/stories/page.css +68 -0
  44. package/src/stories/page.stories.ts +32 -0
  45. package/src/stories/user.ts +3 -0
  46. package/tsconfig.lib.json +18 -0
  47. package/tsconfig.lib.prod.json +11 -0
  48. package/tsconfig.spec.json +15 -0
@@ -0,0 +1,692 @@
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": "Danger",
15
+ "ctype": "miscellaneous",
16
+ "subtype": "variable",
17
+ "file": "projects/k-plus/src/lib/button/button.stories.ts",
18
+ "deprecated": false,
19
+ "deprecationMessage": "",
20
+ "type": "Story",
21
+ "defaultValue": "{\n args: { variant: 'danger' },\n}"
22
+ },
23
+ {
24
+ "name": "Large",
25
+ "ctype": "miscellaneous",
26
+ "subtype": "variable",
27
+ "file": "projects/k-plus/src/stories/button.stories.ts",
28
+ "deprecated": false,
29
+ "deprecationMessage": "",
30
+ "type": "Story",
31
+ "defaultValue": "{\n args: {\n size: 'large',\n label: 'Button',\n },\n}"
32
+ },
33
+ {
34
+ "name": "Loading",
35
+ "ctype": "miscellaneous",
36
+ "subtype": "variable",
37
+ "file": "projects/k-plus/src/lib/button/button.stories.ts",
38
+ "deprecated": false,
39
+ "deprecationMessage": "",
40
+ "type": "Story",
41
+ "defaultValue": "{\n args: { loading: true },\n}"
42
+ },
43
+ {
44
+ "name": "LoggedIn",
45
+ "ctype": "miscellaneous",
46
+ "subtype": "variable",
47
+ "file": "projects/k-plus/src/stories/header.stories.ts",
48
+ "deprecated": false,
49
+ "deprecationMessage": "",
50
+ "type": "Story",
51
+ "defaultValue": "{\n args: {\n user: {\n name: 'Jane Doe',\n },\n },\n}"
52
+ },
53
+ {
54
+ "name": "LoggedIn",
55
+ "ctype": "miscellaneous",
56
+ "subtype": "variable",
57
+ "file": "projects/k-plus/src/stories/page.stories.ts",
58
+ "deprecated": false,
59
+ "deprecationMessage": "",
60
+ "type": "Story",
61
+ "defaultValue": "{\n play: async ({ canvasElement }) => {\n const canvas = within(canvasElement);\n const loginButton = canvas.getByRole('button', { name: /Log in/i });\n await expect(loginButton).toBeInTheDocument();\n await userEvent.click(loginButton);\n await expect(loginButton).not.toBeInTheDocument();\n\n const logoutButton = canvas.getByRole('button', { name: /Log out/i });\n await expect(logoutButton).toBeInTheDocument();\n },\n}"
62
+ },
63
+ {
64
+ "name": "LoggedOut",
65
+ "ctype": "miscellaneous",
66
+ "subtype": "variable",
67
+ "file": "projects/k-plus/src/stories/header.stories.ts",
68
+ "deprecated": false,
69
+ "deprecationMessage": "",
70
+ "type": "Story",
71
+ "defaultValue": "{}"
72
+ },
73
+ {
74
+ "name": "LoggedOut",
75
+ "ctype": "miscellaneous",
76
+ "subtype": "variable",
77
+ "file": "projects/k-plus/src/stories/page.stories.ts",
78
+ "deprecated": false,
79
+ "deprecationMessage": "",
80
+ "type": "Story",
81
+ "defaultValue": "{}"
82
+ },
83
+ {
84
+ "name": "meta",
85
+ "ctype": "miscellaneous",
86
+ "subtype": "variable",
87
+ "file": "projects/k-plus/src/stories/button.stories.ts",
88
+ "deprecated": false,
89
+ "deprecationMessage": "",
90
+ "type": "Meta<ButtonComponent>",
91
+ "defaultValue": "{\n title: 'Example/Button',\n component: ButtonComponent,\n tags: ['autodocs'],\n argTypes: {\n backgroundColor: {\n control: 'color',\n },\n },\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#story-args\n args: { onClick: fn() },\n}"
92
+ },
93
+ {
94
+ "name": "meta",
95
+ "ctype": "miscellaneous",
96
+ "subtype": "variable",
97
+ "file": "projects/k-plus/src/stories/header.stories.ts",
98
+ "deprecated": false,
99
+ "deprecationMessage": "",
100
+ "type": "Meta<HeaderComponent>",
101
+ "defaultValue": "{\n title: 'Example/Header',\n component: HeaderComponent,\n // This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/writing-docs/autodocs\n tags: ['autodocs'],\n parameters: {\n // More on how to position stories at: https://storybook.js.org/docs/configure/story-layout\n layout: 'fullscreen',\n },\n args: {\n onLogin: fn(),\n onLogout: fn(),\n onCreateAccount: fn(),\n },\n}"
102
+ },
103
+ {
104
+ "name": "meta",
105
+ "ctype": "miscellaneous",
106
+ "subtype": "variable",
107
+ "file": "projects/k-plus/src/stories/page.stories.ts",
108
+ "deprecated": false,
109
+ "deprecationMessage": "",
110
+ "type": "Meta<PageComponent>",
111
+ "defaultValue": "{\n title: 'Example/Page',\n component: PageComponent,\n parameters: {\n // More on how to position stories at: https://storybook.js.org/docs/configure/story-layout\n layout: 'fullscreen',\n },\n}"
112
+ },
113
+ {
114
+ "name": "meta",
115
+ "ctype": "miscellaneous",
116
+ "subtype": "variable",
117
+ "file": "projects/k-plus/src/lib/button/button.stories.ts",
118
+ "deprecated": false,
119
+ "deprecationMessage": "",
120
+ "type": "Meta<Button>",
121
+ "defaultValue": "{\n title: 'K-Plus/Button',\n component: Button,\n args: {\n variant: 'primary',\n size: 'md',\n disabled: false,\n loading: false,\n type: 'button',\n },\n render: (args) => ({\n props: args,\n template: `<kplus-button\n [variant]=\"variant\"\n [size]=\"size\"\n [disabled]=\"disabled\"\n [loading]=\"loading\"\n [type]=\"type\"\n >Button</kplus-button>`,\n }),\n}"
122
+ },
123
+ {
124
+ "name": "preview",
125
+ "ctype": "miscellaneous",
126
+ "subtype": "variable",
127
+ "file": "projects/k-plus/.storybook/preview.ts",
128
+ "deprecated": false,
129
+ "deprecationMessage": "",
130
+ "type": "Preview",
131
+ "defaultValue": "{\n parameters: {\n controls: {\n matchers: {\n color: /(background|color)$/i,\n date: /Date$/i,\n },\n },\n },\n}"
132
+ },
133
+ {
134
+ "name": "Primary",
135
+ "ctype": "miscellaneous",
136
+ "subtype": "variable",
137
+ "file": "projects/k-plus/src/stories/button.stories.ts",
138
+ "deprecated": false,
139
+ "deprecationMessage": "",
140
+ "type": "Story",
141
+ "defaultValue": "{\n args: {\n primary: true,\n label: 'Button',\n },\n}"
142
+ },
143
+ {
144
+ "name": "Primary",
145
+ "ctype": "miscellaneous",
146
+ "subtype": "variable",
147
+ "file": "projects/k-plus/src/lib/button/button.stories.ts",
148
+ "deprecated": false,
149
+ "deprecationMessage": "",
150
+ "type": "Story",
151
+ "defaultValue": "{}"
152
+ },
153
+ {
154
+ "name": "Secondary",
155
+ "ctype": "miscellaneous",
156
+ "subtype": "variable",
157
+ "file": "projects/k-plus/src/stories/button.stories.ts",
158
+ "deprecated": false,
159
+ "deprecationMessage": "",
160
+ "type": "Story",
161
+ "defaultValue": "{\n args: {\n label: 'Button',\n },\n}"
162
+ },
163
+ {
164
+ "name": "Secondary",
165
+ "ctype": "miscellaneous",
166
+ "subtype": "variable",
167
+ "file": "projects/k-plus/src/lib/button/button.stories.ts",
168
+ "deprecated": false,
169
+ "deprecationMessage": "",
170
+ "type": "Story",
171
+ "defaultValue": "{\n args: { variant: 'secondary' },\n}"
172
+ },
173
+ {
174
+ "name": "Small",
175
+ "ctype": "miscellaneous",
176
+ "subtype": "variable",
177
+ "file": "projects/k-plus/src/stories/button.stories.ts",
178
+ "deprecated": false,
179
+ "deprecationMessage": "",
180
+ "type": "Story",
181
+ "defaultValue": "{\n args: {\n size: 'small',\n label: 'Button',\n },\n}"
182
+ }
183
+ ],
184
+ "functions": [],
185
+ "typealiases": [
186
+ {
187
+ "name": "Story",
188
+ "ctype": "miscellaneous",
189
+ "subtype": "typealias",
190
+ "rawtype": "StoryObj<ButtonComponent>",
191
+ "file": "projects/k-plus/src/stories/button.stories.ts",
192
+ "deprecated": false,
193
+ "deprecationMessage": "",
194
+ "description": "",
195
+ "kind": 184
196
+ },
197
+ {
198
+ "name": "Story",
199
+ "ctype": "miscellaneous",
200
+ "subtype": "typealias",
201
+ "rawtype": "StoryObj<HeaderComponent>",
202
+ "file": "projects/k-plus/src/stories/header.stories.ts",
203
+ "deprecated": false,
204
+ "deprecationMessage": "",
205
+ "description": "",
206
+ "kind": 184
207
+ },
208
+ {
209
+ "name": "Story",
210
+ "ctype": "miscellaneous",
211
+ "subtype": "typealias",
212
+ "rawtype": "StoryObj<PageComponent>",
213
+ "file": "projects/k-plus/src/stories/page.stories.ts",
214
+ "deprecated": false,
215
+ "deprecationMessage": "",
216
+ "description": "",
217
+ "kind": 184
218
+ },
219
+ {
220
+ "name": "Story",
221
+ "ctype": "miscellaneous",
222
+ "subtype": "typealias",
223
+ "rawtype": "StoryObj<Button>",
224
+ "file": "projects/k-plus/src/lib/button/button.stories.ts",
225
+ "deprecated": false,
226
+ "deprecationMessage": "",
227
+ "description": "",
228
+ "kind": 184
229
+ }
230
+ ],
231
+ "enumerations": [],
232
+ "groupedVariables": {
233
+ "projects/k-plus/src/lib/button/button.stories.ts": [
234
+ {
235
+ "name": "Danger",
236
+ "ctype": "miscellaneous",
237
+ "subtype": "variable",
238
+ "file": "projects/k-plus/src/lib/button/button.stories.ts",
239
+ "deprecated": false,
240
+ "deprecationMessage": "",
241
+ "type": "Story",
242
+ "defaultValue": "{\n args: { variant: 'danger' },\n}"
243
+ },
244
+ {
245
+ "name": "Loading",
246
+ "ctype": "miscellaneous",
247
+ "subtype": "variable",
248
+ "file": "projects/k-plus/src/lib/button/button.stories.ts",
249
+ "deprecated": false,
250
+ "deprecationMessage": "",
251
+ "type": "Story",
252
+ "defaultValue": "{\n args: { loading: true },\n}"
253
+ },
254
+ {
255
+ "name": "meta",
256
+ "ctype": "miscellaneous",
257
+ "subtype": "variable",
258
+ "file": "projects/k-plus/src/lib/button/button.stories.ts",
259
+ "deprecated": false,
260
+ "deprecationMessage": "",
261
+ "type": "Meta<Button>",
262
+ "defaultValue": "{\n title: 'K-Plus/Button',\n component: Button,\n args: {\n variant: 'primary',\n size: 'md',\n disabled: false,\n loading: false,\n type: 'button',\n },\n render: (args) => ({\n props: args,\n template: `<kplus-button\n [variant]=\"variant\"\n [size]=\"size\"\n [disabled]=\"disabled\"\n [loading]=\"loading\"\n [type]=\"type\"\n >Button</kplus-button>`,\n }),\n}"
263
+ },
264
+ {
265
+ "name": "Primary",
266
+ "ctype": "miscellaneous",
267
+ "subtype": "variable",
268
+ "file": "projects/k-plus/src/lib/button/button.stories.ts",
269
+ "deprecated": false,
270
+ "deprecationMessage": "",
271
+ "type": "Story",
272
+ "defaultValue": "{}"
273
+ },
274
+ {
275
+ "name": "Secondary",
276
+ "ctype": "miscellaneous",
277
+ "subtype": "variable",
278
+ "file": "projects/k-plus/src/lib/button/button.stories.ts",
279
+ "deprecated": false,
280
+ "deprecationMessage": "",
281
+ "type": "Story",
282
+ "defaultValue": "{\n args: { variant: 'secondary' },\n}"
283
+ }
284
+ ],
285
+ "projects/k-plus/src/stories/button.stories.ts": [
286
+ {
287
+ "name": "Large",
288
+ "ctype": "miscellaneous",
289
+ "subtype": "variable",
290
+ "file": "projects/k-plus/src/stories/button.stories.ts",
291
+ "deprecated": false,
292
+ "deprecationMessage": "",
293
+ "type": "Story",
294
+ "defaultValue": "{\n args: {\n size: 'large',\n label: 'Button',\n },\n}"
295
+ },
296
+ {
297
+ "name": "meta",
298
+ "ctype": "miscellaneous",
299
+ "subtype": "variable",
300
+ "file": "projects/k-plus/src/stories/button.stories.ts",
301
+ "deprecated": false,
302
+ "deprecationMessage": "",
303
+ "type": "Meta<ButtonComponent>",
304
+ "defaultValue": "{\n title: 'Example/Button',\n component: ButtonComponent,\n tags: ['autodocs'],\n argTypes: {\n backgroundColor: {\n control: 'color',\n },\n },\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#story-args\n args: { onClick: fn() },\n}"
305
+ },
306
+ {
307
+ "name": "Primary",
308
+ "ctype": "miscellaneous",
309
+ "subtype": "variable",
310
+ "file": "projects/k-plus/src/stories/button.stories.ts",
311
+ "deprecated": false,
312
+ "deprecationMessage": "",
313
+ "type": "Story",
314
+ "defaultValue": "{\n args: {\n primary: true,\n label: 'Button',\n },\n}"
315
+ },
316
+ {
317
+ "name": "Secondary",
318
+ "ctype": "miscellaneous",
319
+ "subtype": "variable",
320
+ "file": "projects/k-plus/src/stories/button.stories.ts",
321
+ "deprecated": false,
322
+ "deprecationMessage": "",
323
+ "type": "Story",
324
+ "defaultValue": "{\n args: {\n label: 'Button',\n },\n}"
325
+ },
326
+ {
327
+ "name": "Small",
328
+ "ctype": "miscellaneous",
329
+ "subtype": "variable",
330
+ "file": "projects/k-plus/src/stories/button.stories.ts",
331
+ "deprecated": false,
332
+ "deprecationMessage": "",
333
+ "type": "Story",
334
+ "defaultValue": "{\n args: {\n size: 'small',\n label: 'Button',\n },\n}"
335
+ }
336
+ ],
337
+ "projects/k-plus/src/stories/header.stories.ts": [
338
+ {
339
+ "name": "LoggedIn",
340
+ "ctype": "miscellaneous",
341
+ "subtype": "variable",
342
+ "file": "projects/k-plus/src/stories/header.stories.ts",
343
+ "deprecated": false,
344
+ "deprecationMessage": "",
345
+ "type": "Story",
346
+ "defaultValue": "{\n args: {\n user: {\n name: 'Jane Doe',\n },\n },\n}"
347
+ },
348
+ {
349
+ "name": "LoggedOut",
350
+ "ctype": "miscellaneous",
351
+ "subtype": "variable",
352
+ "file": "projects/k-plus/src/stories/header.stories.ts",
353
+ "deprecated": false,
354
+ "deprecationMessage": "",
355
+ "type": "Story",
356
+ "defaultValue": "{}"
357
+ },
358
+ {
359
+ "name": "meta",
360
+ "ctype": "miscellaneous",
361
+ "subtype": "variable",
362
+ "file": "projects/k-plus/src/stories/header.stories.ts",
363
+ "deprecated": false,
364
+ "deprecationMessage": "",
365
+ "type": "Meta<HeaderComponent>",
366
+ "defaultValue": "{\n title: 'Example/Header',\n component: HeaderComponent,\n // This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/writing-docs/autodocs\n tags: ['autodocs'],\n parameters: {\n // More on how to position stories at: https://storybook.js.org/docs/configure/story-layout\n layout: 'fullscreen',\n },\n args: {\n onLogin: fn(),\n onLogout: fn(),\n onCreateAccount: fn(),\n },\n}"
367
+ }
368
+ ],
369
+ "projects/k-plus/src/stories/page.stories.ts": [
370
+ {
371
+ "name": "LoggedIn",
372
+ "ctype": "miscellaneous",
373
+ "subtype": "variable",
374
+ "file": "projects/k-plus/src/stories/page.stories.ts",
375
+ "deprecated": false,
376
+ "deprecationMessage": "",
377
+ "type": "Story",
378
+ "defaultValue": "{\n play: async ({ canvasElement }) => {\n const canvas = within(canvasElement);\n const loginButton = canvas.getByRole('button', { name: /Log in/i });\n await expect(loginButton).toBeInTheDocument();\n await userEvent.click(loginButton);\n await expect(loginButton).not.toBeInTheDocument();\n\n const logoutButton = canvas.getByRole('button', { name: /Log out/i });\n await expect(logoutButton).toBeInTheDocument();\n },\n}"
379
+ },
380
+ {
381
+ "name": "LoggedOut",
382
+ "ctype": "miscellaneous",
383
+ "subtype": "variable",
384
+ "file": "projects/k-plus/src/stories/page.stories.ts",
385
+ "deprecated": false,
386
+ "deprecationMessage": "",
387
+ "type": "Story",
388
+ "defaultValue": "{}"
389
+ },
390
+ {
391
+ "name": "meta",
392
+ "ctype": "miscellaneous",
393
+ "subtype": "variable",
394
+ "file": "projects/k-plus/src/stories/page.stories.ts",
395
+ "deprecated": false,
396
+ "deprecationMessage": "",
397
+ "type": "Meta<PageComponent>",
398
+ "defaultValue": "{\n title: 'Example/Page',\n component: PageComponent,\n parameters: {\n // More on how to position stories at: https://storybook.js.org/docs/configure/story-layout\n layout: 'fullscreen',\n },\n}"
399
+ }
400
+ ],
401
+ "projects/k-plus/.storybook/preview.ts": [
402
+ {
403
+ "name": "preview",
404
+ "ctype": "miscellaneous",
405
+ "subtype": "variable",
406
+ "file": "projects/k-plus/.storybook/preview.ts",
407
+ "deprecated": false,
408
+ "deprecationMessage": "",
409
+ "type": "Preview",
410
+ "defaultValue": "{\n parameters: {\n controls: {\n matchers: {\n color: /(background|color)$/i,\n date: /Date$/i,\n },\n },\n },\n}"
411
+ }
412
+ ]
413
+ },
414
+ "groupedFunctions": {},
415
+ "groupedEnumerations": {},
416
+ "groupedTypeAliases": {
417
+ "projects/k-plus/src/stories/button.stories.ts": [
418
+ {
419
+ "name": "Story",
420
+ "ctype": "miscellaneous",
421
+ "subtype": "typealias",
422
+ "rawtype": "StoryObj<ButtonComponent>",
423
+ "file": "projects/k-plus/src/stories/button.stories.ts",
424
+ "deprecated": false,
425
+ "deprecationMessage": "",
426
+ "description": "",
427
+ "kind": 184
428
+ }
429
+ ],
430
+ "projects/k-plus/src/stories/header.stories.ts": [
431
+ {
432
+ "name": "Story",
433
+ "ctype": "miscellaneous",
434
+ "subtype": "typealias",
435
+ "rawtype": "StoryObj<HeaderComponent>",
436
+ "file": "projects/k-plus/src/stories/header.stories.ts",
437
+ "deprecated": false,
438
+ "deprecationMessage": "",
439
+ "description": "",
440
+ "kind": 184
441
+ }
442
+ ],
443
+ "projects/k-plus/src/stories/page.stories.ts": [
444
+ {
445
+ "name": "Story",
446
+ "ctype": "miscellaneous",
447
+ "subtype": "typealias",
448
+ "rawtype": "StoryObj<PageComponent>",
449
+ "file": "projects/k-plus/src/stories/page.stories.ts",
450
+ "deprecated": false,
451
+ "deprecationMessage": "",
452
+ "description": "",
453
+ "kind": 184
454
+ }
455
+ ],
456
+ "projects/k-plus/src/lib/button/button.stories.ts": [
457
+ {
458
+ "name": "Story",
459
+ "ctype": "miscellaneous",
460
+ "subtype": "typealias",
461
+ "rawtype": "StoryObj<Button>",
462
+ "file": "projects/k-plus/src/lib/button/button.stories.ts",
463
+ "deprecated": false,
464
+ "deprecationMessage": "",
465
+ "description": "",
466
+ "kind": 184
467
+ }
468
+ ]
469
+ }
470
+ },
471
+ "routes": {
472
+ "name": "<root>",
473
+ "kind": "module",
474
+ "children": []
475
+ },
476
+ "coverage": {
477
+ "count": 0,
478
+ "status": "low",
479
+ "files": [
480
+ {
481
+ "filePath": "projects/k-plus/.storybook/preview.ts",
482
+ "type": "variable",
483
+ "linktype": "miscellaneous",
484
+ "linksubtype": "variable",
485
+ "name": "preview",
486
+ "coveragePercent": 0,
487
+ "coverageCount": "0/1",
488
+ "status": "low"
489
+ },
490
+ {
491
+ "filePath": "projects/k-plus/src/lib/button/button.stories.ts",
492
+ "type": "variable",
493
+ "linktype": "miscellaneous",
494
+ "linksubtype": "variable",
495
+ "name": "Danger",
496
+ "coveragePercent": 0,
497
+ "coverageCount": "0/1",
498
+ "status": "low"
499
+ },
500
+ {
501
+ "filePath": "projects/k-plus/src/lib/button/button.stories.ts",
502
+ "type": "variable",
503
+ "linktype": "miscellaneous",
504
+ "linksubtype": "variable",
505
+ "name": "Loading",
506
+ "coveragePercent": 0,
507
+ "coverageCount": "0/1",
508
+ "status": "low"
509
+ },
510
+ {
511
+ "filePath": "projects/k-plus/src/lib/button/button.stories.ts",
512
+ "type": "variable",
513
+ "linktype": "miscellaneous",
514
+ "linksubtype": "variable",
515
+ "name": "meta",
516
+ "coveragePercent": 0,
517
+ "coverageCount": "0/1",
518
+ "status": "low"
519
+ },
520
+ {
521
+ "filePath": "projects/k-plus/src/lib/button/button.stories.ts",
522
+ "type": "variable",
523
+ "linktype": "miscellaneous",
524
+ "linksubtype": "variable",
525
+ "name": "Primary",
526
+ "coveragePercent": 0,
527
+ "coverageCount": "0/1",
528
+ "status": "low"
529
+ },
530
+ {
531
+ "filePath": "projects/k-plus/src/lib/button/button.stories.ts",
532
+ "type": "variable",
533
+ "linktype": "miscellaneous",
534
+ "linksubtype": "variable",
535
+ "name": "Secondary",
536
+ "coveragePercent": 0,
537
+ "coverageCount": "0/1",
538
+ "status": "low"
539
+ },
540
+ {
541
+ "filePath": "projects/k-plus/src/lib/button/button.stories.ts",
542
+ "type": "type alias",
543
+ "linktype": "miscellaneous",
544
+ "linksubtype": "typealias",
545
+ "name": "Story",
546
+ "coveragePercent": 0,
547
+ "coverageCount": "0/1",
548
+ "status": "low"
549
+ },
550
+ {
551
+ "filePath": "projects/k-plus/src/stories/button.stories.ts",
552
+ "type": "variable",
553
+ "linktype": "miscellaneous",
554
+ "linksubtype": "variable",
555
+ "name": "Large",
556
+ "coveragePercent": 0,
557
+ "coverageCount": "0/1",
558
+ "status": "low"
559
+ },
560
+ {
561
+ "filePath": "projects/k-plus/src/stories/button.stories.ts",
562
+ "type": "variable",
563
+ "linktype": "miscellaneous",
564
+ "linksubtype": "variable",
565
+ "name": "meta",
566
+ "coveragePercent": 0,
567
+ "coverageCount": "0/1",
568
+ "status": "low"
569
+ },
570
+ {
571
+ "filePath": "projects/k-plus/src/stories/button.stories.ts",
572
+ "type": "variable",
573
+ "linktype": "miscellaneous",
574
+ "linksubtype": "variable",
575
+ "name": "Primary",
576
+ "coveragePercent": 0,
577
+ "coverageCount": "0/1",
578
+ "status": "low"
579
+ },
580
+ {
581
+ "filePath": "projects/k-plus/src/stories/button.stories.ts",
582
+ "type": "variable",
583
+ "linktype": "miscellaneous",
584
+ "linksubtype": "variable",
585
+ "name": "Secondary",
586
+ "coveragePercent": 0,
587
+ "coverageCount": "0/1",
588
+ "status": "low"
589
+ },
590
+ {
591
+ "filePath": "projects/k-plus/src/stories/button.stories.ts",
592
+ "type": "variable",
593
+ "linktype": "miscellaneous",
594
+ "linksubtype": "variable",
595
+ "name": "Small",
596
+ "coveragePercent": 0,
597
+ "coverageCount": "0/1",
598
+ "status": "low"
599
+ },
600
+ {
601
+ "filePath": "projects/k-plus/src/stories/button.stories.ts",
602
+ "type": "type alias",
603
+ "linktype": "miscellaneous",
604
+ "linksubtype": "typealias",
605
+ "name": "Story",
606
+ "coveragePercent": 0,
607
+ "coverageCount": "0/1",
608
+ "status": "low"
609
+ },
610
+ {
611
+ "filePath": "projects/k-plus/src/stories/header.stories.ts",
612
+ "type": "variable",
613
+ "linktype": "miscellaneous",
614
+ "linksubtype": "variable",
615
+ "name": "LoggedIn",
616
+ "coveragePercent": 0,
617
+ "coverageCount": "0/1",
618
+ "status": "low"
619
+ },
620
+ {
621
+ "filePath": "projects/k-plus/src/stories/header.stories.ts",
622
+ "type": "variable",
623
+ "linktype": "miscellaneous",
624
+ "linksubtype": "variable",
625
+ "name": "LoggedOut",
626
+ "coveragePercent": 0,
627
+ "coverageCount": "0/1",
628
+ "status": "low"
629
+ },
630
+ {
631
+ "filePath": "projects/k-plus/src/stories/header.stories.ts",
632
+ "type": "variable",
633
+ "linktype": "miscellaneous",
634
+ "linksubtype": "variable",
635
+ "name": "meta",
636
+ "coveragePercent": 0,
637
+ "coverageCount": "0/1",
638
+ "status": "low"
639
+ },
640
+ {
641
+ "filePath": "projects/k-plus/src/stories/header.stories.ts",
642
+ "type": "type alias",
643
+ "linktype": "miscellaneous",
644
+ "linksubtype": "typealias",
645
+ "name": "Story",
646
+ "coveragePercent": 0,
647
+ "coverageCount": "0/1",
648
+ "status": "low"
649
+ },
650
+ {
651
+ "filePath": "projects/k-plus/src/stories/page.stories.ts",
652
+ "type": "variable",
653
+ "linktype": "miscellaneous",
654
+ "linksubtype": "variable",
655
+ "name": "LoggedIn",
656
+ "coveragePercent": 0,
657
+ "coverageCount": "0/1",
658
+ "status": "low"
659
+ },
660
+ {
661
+ "filePath": "projects/k-plus/src/stories/page.stories.ts",
662
+ "type": "variable",
663
+ "linktype": "miscellaneous",
664
+ "linksubtype": "variable",
665
+ "name": "LoggedOut",
666
+ "coveragePercent": 0,
667
+ "coverageCount": "0/1",
668
+ "status": "low"
669
+ },
670
+ {
671
+ "filePath": "projects/k-plus/src/stories/page.stories.ts",
672
+ "type": "variable",
673
+ "linktype": "miscellaneous",
674
+ "linksubtype": "variable",
675
+ "name": "meta",
676
+ "coveragePercent": 0,
677
+ "coverageCount": "0/1",
678
+ "status": "low"
679
+ },
680
+ {
681
+ "filePath": "projects/k-plus/src/stories/page.stories.ts",
682
+ "type": "type alias",
683
+ "linktype": "miscellaneous",
684
+ "linksubtype": "typealias",
685
+ "name": "Story",
686
+ "coveragePercent": 0,
687
+ "coverageCount": "0/1",
688
+ "status": "low"
689
+ }
690
+ ]
691
+ }
692
+ }