@nordhealth/components 1.0.0-beta.13 → 1.0.0-beta.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/custom-elements.json +396 -378
- package/lib/Avatar.js +1 -1
- package/lib/Avatar.js.map +1 -1
- package/lib/DatePicker.js +1 -1
- package/lib/Input.js +1 -1
- package/lib/Radio.js +1 -1
- package/lib/Radio.js.map +1 -1
- package/lib/Select.js +1 -1
- package/lib/Select.js.map +1 -1
- package/lib/Stack.js +1 -1
- package/lib/Stack.js.map +1 -1
- package/lib/{TextField-b4155167.js → TextField-00822066.js} +2 -2
- package/lib/TextField-00822066.js.map +1 -0
- package/lib/Textarea.js +1 -1
- package/lib/Tooltip.js +1 -1
- package/lib/Tooltip.js.map +1 -1
- package/lib/bundle.js +2 -2
- package/lib/bundle.js.map +1 -1
- package/lib/index.js +1 -1
- package/lib/src/stack/Stack.d.ts +4 -0
- package/package.json +2 -2
- package/lib/TextField-b4155167.js.map +0 -1
package/custom-elements.json
CHANGED
|
@@ -420,6 +420,74 @@
|
|
|
420
420
|
],
|
|
421
421
|
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use to show a status update on a piece of information or action.\n- Use to mark something as a “draft” or “new”.\n- Use when you want to highlight something that has been added recently.\n- Use established color patterns so that users can clearly identify the importance level.\n- Always position badge so that it’s clear to understand what object it’s related to.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t make badges clickable. Instead use button component’s small variant.\n- Don’t use alternatives to existing badge variants.\n\n</div>\n\n---\n\n## Content guidelines\n\nBadge labels should use a single word to describe the status of an object. Only use two words if you need to describe a complex state:\n\n<div class=\"n-usage n-usage-do\">Complete</div>\n<div class=\"n-usage n-usage-dont\">Action completed</div>\n\nWhen writing badge labels, always write them in sentence case, not title case. The first word should be capitalized and the rest lowercase (unless a proper noun):\n\n<div class=\"n-usage n-usage-do\">Partially refunded</div>\n<div class=\"n-usage n-usage-dont\">Partially Refunded</div>\n\nAvoid unnecessary words and articles in badge labels, such as “is”, “the”, “an” or “a”:\n\n<div class=\"n-usage n-usage-do\">Pending</div>\n<div class=\"n-usage n-usage-dont\">Item is pending</div>\n\nAlways describe the status in the past tense:\n\n<div class=\"n-usage n-usage-do\">Refunded</div>\n<div class=\"n-usage n-usage-dont\">Refund</div>\n\n---\n\n## Variants\n\nThis section describes the different component variants, their purpose, and when to use each variant.\n\n| Name | Purpose |\n| ----------- | --------------------------------------------------------------------------------------------------------------------------------------- |\n| `info` | The default variant. Used to convey general information that isn’t critical. |\n| `success` | Used to convey success states. For example, you might want to show a badge that tells the user a payment was successful. |\n| `highlight` | Used to highlight specific items in the interface, like notifications. |\n| `danger` | Used to communicate problems that have to be resolved so that user can continue forward. Should always be used for highlighting errors. |\n| `warning` | Used to display information that needs a user’s attention attention and may require further steps. |\n"
|
|
422
422
|
},
|
|
423
|
+
{
|
|
424
|
+
"kind": "javascript-module",
|
|
425
|
+
"path": "src/banner/Banner.ts",
|
|
426
|
+
"declarations": [
|
|
427
|
+
{
|
|
428
|
+
"kind": "class",
|
|
429
|
+
"description": "Banner informs users about important changes or conditions in the\ninterface. Use this component if you need to communicate to users\nin a prominent way.",
|
|
430
|
+
"name": "Banner",
|
|
431
|
+
"slots": [
|
|
432
|
+
{
|
|
433
|
+
"description": "default slot",
|
|
434
|
+
"name": ""
|
|
435
|
+
}
|
|
436
|
+
],
|
|
437
|
+
"members": [
|
|
438
|
+
{
|
|
439
|
+
"kind": "field",
|
|
440
|
+
"name": "variant",
|
|
441
|
+
"type": {
|
|
442
|
+
"text": "\"info\" | \"danger\" | \"success\" | \"warning\""
|
|
443
|
+
},
|
|
444
|
+
"default": "\"info\"",
|
|
445
|
+
"description": "The style variant of the banner.",
|
|
446
|
+
"attribute": "variant",
|
|
447
|
+
"reflects": true
|
|
448
|
+
}
|
|
449
|
+
],
|
|
450
|
+
"attributes": [
|
|
451
|
+
{
|
|
452
|
+
"name": "variant",
|
|
453
|
+
"type": {
|
|
454
|
+
"text": "\"info\" | \"danger\" | \"success\" | \"warning\""
|
|
455
|
+
},
|
|
456
|
+
"default": "\"info\"",
|
|
457
|
+
"description": "The style variant of the banner.",
|
|
458
|
+
"fieldName": "variant"
|
|
459
|
+
}
|
|
460
|
+
],
|
|
461
|
+
"superclass": {
|
|
462
|
+
"name": "LitElement",
|
|
463
|
+
"package": "lit"
|
|
464
|
+
},
|
|
465
|
+
"status": "new",
|
|
466
|
+
"category": "feedback",
|
|
467
|
+
"tagName": "nord-banner",
|
|
468
|
+
"customElement": true
|
|
469
|
+
}
|
|
470
|
+
],
|
|
471
|
+
"exports": [
|
|
472
|
+
{
|
|
473
|
+
"kind": "js",
|
|
474
|
+
"name": "default",
|
|
475
|
+
"declaration": {
|
|
476
|
+
"name": "Banner",
|
|
477
|
+
"module": "src/banner/Banner.ts"
|
|
478
|
+
}
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"kind": "custom-element-definition",
|
|
482
|
+
"name": "nord-banner",
|
|
483
|
+
"declaration": {
|
|
484
|
+
"name": "Banner",
|
|
485
|
+
"module": "src/banner/Banner.ts"
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
],
|
|
489
|
+
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use this component if you need to communicate in a prominent way.\n- Place banner at the top of the section it applies to.\n- Use for highlighting errors and success statuses.\n- Put banner close to the context it’s referring to.\n- Move focus to the banner if it’s relevant to the current workflow.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Move focus to banner if it appears on page load.\n- Use for highlighting general content or as a banner.\n- Use to replace an error page.\n\n</div>\n\n---\n\n## Content guidelines\n\nBanner content should be clear, accurate and easy to understand:\n\n<div class=\"n-usage n-usage-do\">We’re experiencing an incident. Please see our status page for more details.</div>\n<div class=\"n-usage n-usage-dont\">There was an error.</div>\n\nWhen writing banner content, always write it in sentence case, not title case. The first word should be capitalized and the rest lowercase (unless a proper noun):\n\n<div class=\"n-usage n-usage-do\">We’re experiencing an incident.</div>\n<div class=\"n-usage n-usage-dont\">We’re Experiencing An Incident.</div>\n\nAlways end in punctuation:\n\n<div class=\"n-usage n-usage-do\">We’re experiencing an incident.</div>\n<div class=\"n-usage n-usage-dont\">We’re experiencing an incident</div>\n"
|
|
490
|
+
},
|
|
423
491
|
{
|
|
424
492
|
"kind": "javascript-module",
|
|
425
493
|
"path": "src/button/Button.ts",
|
|
@@ -1281,49 +1349,69 @@
|
|
|
1281
1349
|
},
|
|
1282
1350
|
{
|
|
1283
1351
|
"kind": "javascript-module",
|
|
1284
|
-
"path": "src/
|
|
1352
|
+
"path": "src/card/Card.ts",
|
|
1285
1353
|
"declarations": [
|
|
1286
1354
|
{
|
|
1287
1355
|
"kind": "class",
|
|
1288
|
-
"description": "
|
|
1289
|
-
"name": "
|
|
1356
|
+
"description": "Cards are shadowed surfaces that display content and actions on a\nsingle topic. They should be easy to scan for relevant and\nactionable information.",
|
|
1357
|
+
"name": "Card",
|
|
1290
1358
|
"slots": [
|
|
1291
1359
|
{
|
|
1292
|
-
"description": "
|
|
1360
|
+
"description": "The card content.",
|
|
1293
1361
|
"name": ""
|
|
1362
|
+
},
|
|
1363
|
+
{
|
|
1364
|
+
"description": "Optional slot that holds a header for the card.",
|
|
1365
|
+
"name": "header"
|
|
1366
|
+
},
|
|
1367
|
+
{
|
|
1368
|
+
"description": "Optional slot that holds footer content for the card.",
|
|
1369
|
+
"name": "footer"
|
|
1294
1370
|
}
|
|
1295
1371
|
],
|
|
1296
1372
|
"members": [
|
|
1297
1373
|
{
|
|
1298
1374
|
"kind": "field",
|
|
1299
|
-
"name": "
|
|
1375
|
+
"name": "headerSlot",
|
|
1376
|
+
"privacy": "private",
|
|
1377
|
+
"default": "new SlotController(this, \"header\")"
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
"kind": "field",
|
|
1381
|
+
"name": "footerSlot",
|
|
1382
|
+
"privacy": "private",
|
|
1383
|
+
"default": "new SlotController(this, \"footer\")"
|
|
1384
|
+
},
|
|
1385
|
+
{
|
|
1386
|
+
"kind": "field",
|
|
1387
|
+
"name": "padding",
|
|
1300
1388
|
"type": {
|
|
1301
|
-
"text": "\"
|
|
1389
|
+
"text": "\"m\" | \"l\" | \"none\""
|
|
1302
1390
|
},
|
|
1303
|
-
"default": "\"
|
|
1304
|
-
"description": "
|
|
1305
|
-
"attribute": "
|
|
1391
|
+
"default": "\"m\"",
|
|
1392
|
+
"description": "Controls the padding of card component. When set to “none”,\nthe header and footer slots will still have padding.",
|
|
1393
|
+
"attribute": "padding",
|
|
1306
1394
|
"reflects": true
|
|
1307
1395
|
}
|
|
1308
1396
|
],
|
|
1309
1397
|
"attributes": [
|
|
1310
1398
|
{
|
|
1311
|
-
"name": "
|
|
1399
|
+
"name": "padding",
|
|
1312
1400
|
"type": {
|
|
1313
|
-
"text": "\"
|
|
1401
|
+
"text": "\"m\" | \"l\" | \"none\""
|
|
1314
1402
|
},
|
|
1315
|
-
"default": "\"
|
|
1316
|
-
"description": "
|
|
1317
|
-
"fieldName": "
|
|
1403
|
+
"default": "\"m\"",
|
|
1404
|
+
"description": "Controls the padding of card component. When set to “none”,\nthe header and footer slots will still have padding.",
|
|
1405
|
+
"fieldName": "padding"
|
|
1318
1406
|
}
|
|
1319
1407
|
],
|
|
1320
1408
|
"superclass": {
|
|
1321
1409
|
"name": "LitElement",
|
|
1322
1410
|
"package": "lit"
|
|
1323
1411
|
},
|
|
1324
|
-
"status": "
|
|
1325
|
-
"category": "
|
|
1326
|
-
"tagName": "nord-
|
|
1412
|
+
"status": "ready",
|
|
1413
|
+
"category": "structure",
|
|
1414
|
+
"tagName": "nord-card",
|
|
1327
1415
|
"customElement": true
|
|
1328
1416
|
}
|
|
1329
1417
|
],
|
|
@@ -1332,20 +1420,20 @@
|
|
|
1332
1420
|
"kind": "js",
|
|
1333
1421
|
"name": "default",
|
|
1334
1422
|
"declaration": {
|
|
1335
|
-
"name": "
|
|
1336
|
-
"module": "src/
|
|
1423
|
+
"name": "Card",
|
|
1424
|
+
"module": "src/card/Card.ts"
|
|
1337
1425
|
}
|
|
1338
1426
|
},
|
|
1339
1427
|
{
|
|
1340
1428
|
"kind": "custom-element-definition",
|
|
1341
|
-
"name": "nord-
|
|
1429
|
+
"name": "nord-card",
|
|
1342
1430
|
"declaration": {
|
|
1343
|
-
"name": "
|
|
1344
|
-
"module": "src/
|
|
1431
|
+
"name": "Card",
|
|
1432
|
+
"module": "src/card/Card.ts"
|
|
1345
1433
|
}
|
|
1346
1434
|
}
|
|
1347
1435
|
],
|
|
1348
|
-
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use
|
|
1436
|
+
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use to display content and actions on a single topic inside a container.\n- Use to visually separate specific parts of content in an application view.\n- Use to wrap a form into a container, for example a login form.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t use when you need to capture user’s attention in a prominent way.\n- Don’t use to inform user about important changes or conditions in the interface.\n- Don’t use multiple primary buttons inside a card. A card should only contain a single primary action.\n\n</div>\n"
|
|
1349
1437
|
},
|
|
1350
1438
|
{
|
|
1351
1439
|
"kind": "javascript-module",
|
|
@@ -1961,94 +2049,6 @@
|
|
|
1961
2049
|
],
|
|
1962
2050
|
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use for making it possible to choose one or more options from a limited number of options.\n- Use for “accepting terms of service” and similar functionality.\n- Use in forms to toggle something on or off.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t use when you have more than 10 options to choose from.\n- Don’t change the selection of another checkbox when another one is clicked. Only exception is when a checkbox is used to make a bulk selection of multiple items.\n\n</div>\n\n---\n\n## Content guidelines\n\nCheckbox labels should be clear, accurate and predictable. It should be possible for the user to understand what they are selecting:\n\n<div class=\"n-usage n-usage-do\">User settings</div>\n<div class=\"n-usage n-usage-dont\">Option 1</div>\n\nWhen writing checkbox labels, always write them in sentence case, not title case. The first word should be capitalized and the rest lowercase (unless a proper noun):\n\n<div class=\"n-usage n-usage-do\">User settings</div>\n<div class=\"n-usage n-usage-dont\">User Settings</div>\n\nAvoid ending in punctuation if it’s a single sentence, word, or a fragment:\n\n<div class=\"n-usage n-usage-do\">Show dashboard</div>\n<div class=\"n-usage n-usage-dont\">Show dashboard.</div>\n\nDo not use commas or semicolons at the end of each line\n\n<div class=\"n-usage n-usage-do\">Patients</div>\n<div class=\"n-usage n-usage-dont\">Patients;</div>\n"
|
|
1963
2051
|
},
|
|
1964
|
-
{
|
|
1965
|
-
"kind": "javascript-module",
|
|
1966
|
-
"path": "src/card/Card.ts",
|
|
1967
|
-
"declarations": [
|
|
1968
|
-
{
|
|
1969
|
-
"kind": "class",
|
|
1970
|
-
"description": "Cards are shadowed surfaces that display content and actions on a\nsingle topic. They should be easy to scan for relevant and\nactionable information.",
|
|
1971
|
-
"name": "Card",
|
|
1972
|
-
"slots": [
|
|
1973
|
-
{
|
|
1974
|
-
"description": "The card content.",
|
|
1975
|
-
"name": ""
|
|
1976
|
-
},
|
|
1977
|
-
{
|
|
1978
|
-
"description": "Optional slot that holds a header for the card.",
|
|
1979
|
-
"name": "header"
|
|
1980
|
-
},
|
|
1981
|
-
{
|
|
1982
|
-
"description": "Optional slot that holds footer content for the card.",
|
|
1983
|
-
"name": "footer"
|
|
1984
|
-
}
|
|
1985
|
-
],
|
|
1986
|
-
"members": [
|
|
1987
|
-
{
|
|
1988
|
-
"kind": "field",
|
|
1989
|
-
"name": "headerSlot",
|
|
1990
|
-
"privacy": "private",
|
|
1991
|
-
"default": "new SlotController(this, \"header\")"
|
|
1992
|
-
},
|
|
1993
|
-
{
|
|
1994
|
-
"kind": "field",
|
|
1995
|
-
"name": "footerSlot",
|
|
1996
|
-
"privacy": "private",
|
|
1997
|
-
"default": "new SlotController(this, \"footer\")"
|
|
1998
|
-
},
|
|
1999
|
-
{
|
|
2000
|
-
"kind": "field",
|
|
2001
|
-
"name": "padding",
|
|
2002
|
-
"type": {
|
|
2003
|
-
"text": "\"m\" | \"l\" | \"none\""
|
|
2004
|
-
},
|
|
2005
|
-
"default": "\"m\"",
|
|
2006
|
-
"description": "Controls the padding of card component. When set to “none”,\nthe header and footer slots will still have padding.",
|
|
2007
|
-
"attribute": "padding",
|
|
2008
|
-
"reflects": true
|
|
2009
|
-
}
|
|
2010
|
-
],
|
|
2011
|
-
"attributes": [
|
|
2012
|
-
{
|
|
2013
|
-
"name": "padding",
|
|
2014
|
-
"type": {
|
|
2015
|
-
"text": "\"m\" | \"l\" | \"none\""
|
|
2016
|
-
},
|
|
2017
|
-
"default": "\"m\"",
|
|
2018
|
-
"description": "Controls the padding of card component. When set to “none”,\nthe header and footer slots will still have padding.",
|
|
2019
|
-
"fieldName": "padding"
|
|
2020
|
-
}
|
|
2021
|
-
],
|
|
2022
|
-
"superclass": {
|
|
2023
|
-
"name": "LitElement",
|
|
2024
|
-
"package": "lit"
|
|
2025
|
-
},
|
|
2026
|
-
"status": "ready",
|
|
2027
|
-
"category": "structure",
|
|
2028
|
-
"tagName": "nord-card",
|
|
2029
|
-
"customElement": true
|
|
2030
|
-
}
|
|
2031
|
-
],
|
|
2032
|
-
"exports": [
|
|
2033
|
-
{
|
|
2034
|
-
"kind": "js",
|
|
2035
|
-
"name": "default",
|
|
2036
|
-
"declaration": {
|
|
2037
|
-
"name": "Card",
|
|
2038
|
-
"module": "src/card/Card.ts"
|
|
2039
|
-
}
|
|
2040
|
-
},
|
|
2041
|
-
{
|
|
2042
|
-
"kind": "custom-element-definition",
|
|
2043
|
-
"name": "nord-card",
|
|
2044
|
-
"declaration": {
|
|
2045
|
-
"name": "Card",
|
|
2046
|
-
"module": "src/card/Card.ts"
|
|
2047
|
-
}
|
|
2048
|
-
}
|
|
2049
|
-
],
|
|
2050
|
-
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use to display content and actions on a single topic inside a container.\n- Use to visually separate specific parts of content in an application view.\n- Use to wrap a form into a container, for example a login form.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t use when you need to capture user’s attention in a prominent way.\n- Don’t use to inform user about important changes or conditions in the interface.\n- Don’t use multiple primary buttons inside a card. A card should only contain a single primary action.\n\n</div>\n"
|
|
2051
|
-
},
|
|
2052
2052
|
{
|
|
2053
2053
|
"kind": "javascript-module",
|
|
2054
2054
|
"path": "src/command-menu/CommandMenu.ts",
|
|
@@ -4662,33 +4662,109 @@
|
|
|
4662
4662
|
},
|
|
4663
4663
|
{
|
|
4664
4664
|
"kind": "javascript-module",
|
|
4665
|
-
"path": "src/
|
|
4665
|
+
"path": "src/header/Header.ts",
|
|
4666
4666
|
"declarations": [
|
|
4667
4667
|
{
|
|
4668
4668
|
"kind": "class",
|
|
4669
|
-
"description": "
|
|
4670
|
-
"name": "
|
|
4669
|
+
"description": "The header is a block of designated space for labelling the currently\nviewed context as well as providing primary actions.",
|
|
4670
|
+
"name": "Header",
|
|
4671
|
+
"slots": [
|
|
4672
|
+
{
|
|
4673
|
+
"description": "The header content.",
|
|
4674
|
+
"name": ""
|
|
4675
|
+
},
|
|
4676
|
+
{
|
|
4677
|
+
"description": "Optional slot for buttons, toggles, etc.",
|
|
4678
|
+
"name": "action"
|
|
4679
|
+
}
|
|
4680
|
+
],
|
|
4671
4681
|
"members": [
|
|
4672
4682
|
{
|
|
4673
4683
|
"kind": "field",
|
|
4674
|
-
"name": "
|
|
4675
|
-
"type": {
|
|
4676
|
-
"text": "IconResolver"
|
|
4677
|
-
},
|
|
4684
|
+
"name": "actionSlot",
|
|
4678
4685
|
"privacy": "private",
|
|
4679
|
-
"
|
|
4686
|
+
"default": "new SlotController(this, \"action\")"
|
|
4680
4687
|
},
|
|
4681
4688
|
{
|
|
4682
4689
|
"kind": "field",
|
|
4683
|
-
"name": "
|
|
4690
|
+
"name": "_warningLogged",
|
|
4691
|
+
"type": {
|
|
4692
|
+
"text": "boolean"
|
|
4693
|
+
},
|
|
4684
4694
|
"privacy": "private",
|
|
4685
4695
|
"static": true,
|
|
4686
|
-
"default": "
|
|
4687
|
-
|
|
4688
|
-
|
|
4689
|
-
|
|
4690
|
-
|
|
4691
|
-
|
|
4696
|
+
"default": "false",
|
|
4697
|
+
"inheritedFrom": {
|
|
4698
|
+
"name": "DraftComponentMixin",
|
|
4699
|
+
"module": "src/common/mixins/DraftComponentMixin.ts"
|
|
4700
|
+
}
|
|
4701
|
+
}
|
|
4702
|
+
],
|
|
4703
|
+
"mixins": [
|
|
4704
|
+
{
|
|
4705
|
+
"name": "DraftComponentMixin",
|
|
4706
|
+
"module": "/src/common/mixins/DraftComponentMixin.js"
|
|
4707
|
+
}
|
|
4708
|
+
],
|
|
4709
|
+
"superclass": {
|
|
4710
|
+
"name": "LitElement",
|
|
4711
|
+
"package": "lit"
|
|
4712
|
+
},
|
|
4713
|
+
"status": "draft",
|
|
4714
|
+
"category": "structure",
|
|
4715
|
+
"tagName": "nord-header",
|
|
4716
|
+
"customElement": true
|
|
4717
|
+
}
|
|
4718
|
+
],
|
|
4719
|
+
"exports": [
|
|
4720
|
+
{
|
|
4721
|
+
"kind": "js",
|
|
4722
|
+
"name": "default",
|
|
4723
|
+
"declaration": {
|
|
4724
|
+
"name": "Header",
|
|
4725
|
+
"module": "src/header/Header.ts"
|
|
4726
|
+
}
|
|
4727
|
+
},
|
|
4728
|
+
{
|
|
4729
|
+
"kind": "custom-element-definition",
|
|
4730
|
+
"name": "nord-header",
|
|
4731
|
+
"declaration": {
|
|
4732
|
+
"name": "Header",
|
|
4733
|
+
"module": "src/header/Header.ts"
|
|
4734
|
+
}
|
|
4735
|
+
}
|
|
4736
|
+
],
|
|
4737
|
+
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use the header component to show a heading to describe the current view.\n- Use the header component to hold primary actions.\n- Use the header component at a visual high position at full width.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t overcrowd the header component with too many actions or information.\n- Don’t nest the header component too deeply and restrict its available space.\n\n</div>\n\n-------\n\n## Content guidelines\n\nThe header component should be a containing element placed high on the page to present high level controls and to describe the page itself. It shouldn’t be overcrowded with controls or information.\n\n<div class=\"n-usage n-usage-do\">[Menu] Dashboard [Account] [Log out]</div>\n<div class=\"n-usage n-usage-dont\">[Menu] Use the cards below to view various information [Export] [Save] [Edit Profile] [Log out] [Preferences]</div>\n"
|
|
4738
|
+
},
|
|
4739
|
+
{
|
|
4740
|
+
"kind": "javascript-module",
|
|
4741
|
+
"path": "src/icon/Icon.ts",
|
|
4742
|
+
"declarations": [
|
|
4743
|
+
{
|
|
4744
|
+
"kind": "class",
|
|
4745
|
+
"description": "Icons are used to provide additional meaning or in places where text label doesn’t fit.\nIcon component allows you to display an icon from the Nordicons library.",
|
|
4746
|
+
"name": "Icon",
|
|
4747
|
+
"members": [
|
|
4748
|
+
{
|
|
4749
|
+
"kind": "field",
|
|
4750
|
+
"name": "resolver",
|
|
4751
|
+
"type": {
|
|
4752
|
+
"text": "IconResolver"
|
|
4753
|
+
},
|
|
4754
|
+
"privacy": "private",
|
|
4755
|
+
"static": true
|
|
4756
|
+
},
|
|
4757
|
+
{
|
|
4758
|
+
"kind": "field",
|
|
4759
|
+
"name": "registeredIcons",
|
|
4760
|
+
"privacy": "private",
|
|
4761
|
+
"static": true,
|
|
4762
|
+
"default": "new Map<string, string>()"
|
|
4763
|
+
},
|
|
4764
|
+
{
|
|
4765
|
+
"kind": "method",
|
|
4766
|
+
"name": "registerResolver",
|
|
4767
|
+
"static": true,
|
|
4692
4768
|
"parameters": [
|
|
4693
4769
|
{
|
|
4694
4770
|
"name": "resolver",
|
|
@@ -4895,82 +4971,6 @@
|
|
|
4895
4971
|
],
|
|
4896
4972
|
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use to provide additional meaning in addition to a text label.\n- Use to help users who have difficulties with reading and attention.\n- Use in places where text label doesn’t fit (remember to add an accessible label for the icon).\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t use for decorative purposes alone.\n- Don’t use when a button’s action is already clear based on the text label.\n- Don’t use the same icon for differing purposes, as users will come to associate icons with specific types of actions.\n\n</div>\n\n---\n\n## Additional considerations\n\n- Icon components are hidden from assistive technologies by default.\n- Use `label` property to give an accessible label for the icon and to make it visible to assistive technologies.\n"
|
|
4897
4973
|
},
|
|
4898
|
-
{
|
|
4899
|
-
"kind": "javascript-module",
|
|
4900
|
-
"path": "src/header/Header.ts",
|
|
4901
|
-
"declarations": [
|
|
4902
|
-
{
|
|
4903
|
-
"kind": "class",
|
|
4904
|
-
"description": "The header is a block of designated space for labelling the currently\nviewed context as well as providing primary actions.",
|
|
4905
|
-
"name": "Header",
|
|
4906
|
-
"slots": [
|
|
4907
|
-
{
|
|
4908
|
-
"description": "The header content.",
|
|
4909
|
-
"name": ""
|
|
4910
|
-
},
|
|
4911
|
-
{
|
|
4912
|
-
"description": "Optional slot for buttons, toggles, etc.",
|
|
4913
|
-
"name": "action"
|
|
4914
|
-
}
|
|
4915
|
-
],
|
|
4916
|
-
"members": [
|
|
4917
|
-
{
|
|
4918
|
-
"kind": "field",
|
|
4919
|
-
"name": "actionSlot",
|
|
4920
|
-
"privacy": "private",
|
|
4921
|
-
"default": "new SlotController(this, \"action\")"
|
|
4922
|
-
},
|
|
4923
|
-
{
|
|
4924
|
-
"kind": "field",
|
|
4925
|
-
"name": "_warningLogged",
|
|
4926
|
-
"type": {
|
|
4927
|
-
"text": "boolean"
|
|
4928
|
-
},
|
|
4929
|
-
"privacy": "private",
|
|
4930
|
-
"static": true,
|
|
4931
|
-
"default": "false",
|
|
4932
|
-
"inheritedFrom": {
|
|
4933
|
-
"name": "DraftComponentMixin",
|
|
4934
|
-
"module": "src/common/mixins/DraftComponentMixin.ts"
|
|
4935
|
-
}
|
|
4936
|
-
}
|
|
4937
|
-
],
|
|
4938
|
-
"mixins": [
|
|
4939
|
-
{
|
|
4940
|
-
"name": "DraftComponentMixin",
|
|
4941
|
-
"module": "/src/common/mixins/DraftComponentMixin.js"
|
|
4942
|
-
}
|
|
4943
|
-
],
|
|
4944
|
-
"superclass": {
|
|
4945
|
-
"name": "LitElement",
|
|
4946
|
-
"package": "lit"
|
|
4947
|
-
},
|
|
4948
|
-
"status": "draft",
|
|
4949
|
-
"category": "structure",
|
|
4950
|
-
"tagName": "nord-header",
|
|
4951
|
-
"customElement": true
|
|
4952
|
-
}
|
|
4953
|
-
],
|
|
4954
|
-
"exports": [
|
|
4955
|
-
{
|
|
4956
|
-
"kind": "js",
|
|
4957
|
-
"name": "default",
|
|
4958
|
-
"declaration": {
|
|
4959
|
-
"name": "Header",
|
|
4960
|
-
"module": "src/header/Header.ts"
|
|
4961
|
-
}
|
|
4962
|
-
},
|
|
4963
|
-
{
|
|
4964
|
-
"kind": "custom-element-definition",
|
|
4965
|
-
"name": "nord-header",
|
|
4966
|
-
"declaration": {
|
|
4967
|
-
"name": "Header",
|
|
4968
|
-
"module": "src/header/Header.ts"
|
|
4969
|
-
}
|
|
4970
|
-
}
|
|
4971
|
-
],
|
|
4972
|
-
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use the header component to show a heading to describe the current view.\n- Use the header component to hold primary actions.\n- Use the header component at a visual high position at full width.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t overcrowd the header component with too many actions or information.\n- Don’t nest the header component too deeply and restrict its available space.\n\n</div>\n\n-------\n\n## Content guidelines\n\nThe header component should be a containing element placed high on the page to present high level controls and to describe the page itself. It shouldn’t be overcrowded with controls or information.\n\n<div class=\"n-usage n-usage-do\">[Menu] Dashboard [Account] [Log out]</div>\n<div class=\"n-usage n-usage-dont\">[Menu] Use the cards below to view various information [Export] [Save] [Edit Profile] [Log out] [Preferences]</div>\n"
|
|
4973
|
-
},
|
|
4974
4974
|
{
|
|
4975
4975
|
"kind": "javascript-module",
|
|
4976
4976
|
"path": "src/input/Input.ts",
|
|
@@ -7550,6 +7550,16 @@
|
|
|
7550
7550
|
"description": "How to align the child items inside the stack.",
|
|
7551
7551
|
"attribute": "align-items",
|
|
7552
7552
|
"reflects": true
|
|
7553
|
+
},
|
|
7554
|
+
{
|
|
7555
|
+
"kind": "field",
|
|
7556
|
+
"name": "justifyContent",
|
|
7557
|
+
"type": {
|
|
7558
|
+
"text": "\"center\" | \"start\" | \"end\" | undefined"
|
|
7559
|
+
},
|
|
7560
|
+
"description": "How to justify the child items inside the stack.",
|
|
7561
|
+
"attribute": "justify-content",
|
|
7562
|
+
"reflects": true
|
|
7553
7563
|
}
|
|
7554
7564
|
],
|
|
7555
7565
|
"attributes": [
|
|
@@ -7578,6 +7588,14 @@
|
|
|
7578
7588
|
},
|
|
7579
7589
|
"description": "How to align the child items inside the stack.",
|
|
7580
7590
|
"fieldName": "alignItems"
|
|
7591
|
+
},
|
|
7592
|
+
{
|
|
7593
|
+
"name": "justify-content",
|
|
7594
|
+
"type": {
|
|
7595
|
+
"text": "\"center\" | \"start\" | \"end\" | undefined"
|
|
7596
|
+
},
|
|
7597
|
+
"description": "How to justify the child items inside the stack.",
|
|
7598
|
+
"fieldName": "justifyContent"
|
|
7581
7599
|
}
|
|
7582
7600
|
],
|
|
7583
7601
|
"superclass": {
|
|
@@ -8556,6 +8574,182 @@
|
|
|
8556
8574
|
],
|
|
8557
8575
|
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use to hide text visually from the screen, but keep it available to assistive technologies, such as screen readers.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t use for hiding interactive content.\n\n</div>\n"
|
|
8558
8576
|
},
|
|
8577
|
+
{
|
|
8578
|
+
"kind": "javascript-module",
|
|
8579
|
+
"path": "src/common/directives/cond.ts",
|
|
8580
|
+
"declarations": [
|
|
8581
|
+
{
|
|
8582
|
+
"kind": "variable",
|
|
8583
|
+
"name": "cond"
|
|
8584
|
+
}
|
|
8585
|
+
],
|
|
8586
|
+
"exports": [
|
|
8587
|
+
{
|
|
8588
|
+
"kind": "js",
|
|
8589
|
+
"name": "cond",
|
|
8590
|
+
"declaration": {
|
|
8591
|
+
"name": "cond",
|
|
8592
|
+
"module": "src/common/directives/cond.ts"
|
|
8593
|
+
}
|
|
8594
|
+
}
|
|
8595
|
+
]
|
|
8596
|
+
},
|
|
8597
|
+
{
|
|
8598
|
+
"kind": "javascript-module",
|
|
8599
|
+
"path": "src/common/directives/wrapIf.ts",
|
|
8600
|
+
"declarations": [
|
|
8601
|
+
{
|
|
8602
|
+
"kind": "function",
|
|
8603
|
+
"name": "wrapIf",
|
|
8604
|
+
"return": {
|
|
8605
|
+
"type": {
|
|
8606
|
+
"text": "TInner"
|
|
8607
|
+
}
|
|
8608
|
+
},
|
|
8609
|
+
"parameters": [
|
|
8610
|
+
{
|
|
8611
|
+
"name": "condition",
|
|
8612
|
+
"type": {
|
|
8613
|
+
"text": "false"
|
|
8614
|
+
}
|
|
8615
|
+
},
|
|
8616
|
+
{
|
|
8617
|
+
"name": "inner",
|
|
8618
|
+
"type": {
|
|
8619
|
+
"text": "() => TInner"
|
|
8620
|
+
}
|
|
8621
|
+
},
|
|
8622
|
+
{
|
|
8623
|
+
"name": "wrapper",
|
|
8624
|
+
"type": {
|
|
8625
|
+
"text": "(inner: TInner) => TWrapper"
|
|
8626
|
+
}
|
|
8627
|
+
}
|
|
8628
|
+
]
|
|
8629
|
+
},
|
|
8630
|
+
{
|
|
8631
|
+
"kind": "function",
|
|
8632
|
+
"name": "wrapIf",
|
|
8633
|
+
"return": {
|
|
8634
|
+
"type": {
|
|
8635
|
+
"text": "TWrapper"
|
|
8636
|
+
}
|
|
8637
|
+
},
|
|
8638
|
+
"parameters": [
|
|
8639
|
+
{
|
|
8640
|
+
"name": "condition",
|
|
8641
|
+
"type": {
|
|
8642
|
+
"text": "true"
|
|
8643
|
+
}
|
|
8644
|
+
},
|
|
8645
|
+
{
|
|
8646
|
+
"name": "inner",
|
|
8647
|
+
"type": {
|
|
8648
|
+
"text": "() => TInner"
|
|
8649
|
+
}
|
|
8650
|
+
},
|
|
8651
|
+
{
|
|
8652
|
+
"name": "wrapper",
|
|
8653
|
+
"type": {
|
|
8654
|
+
"text": "(inner: TInner) => TWrapper"
|
|
8655
|
+
}
|
|
8656
|
+
}
|
|
8657
|
+
]
|
|
8658
|
+
},
|
|
8659
|
+
{
|
|
8660
|
+
"kind": "function",
|
|
8661
|
+
"name": "wrapIf",
|
|
8662
|
+
"return": {
|
|
8663
|
+
"type": {
|
|
8664
|
+
"text": "TInner | TWrapper"
|
|
8665
|
+
}
|
|
8666
|
+
},
|
|
8667
|
+
"parameters": [
|
|
8668
|
+
{
|
|
8669
|
+
"name": "condition",
|
|
8670
|
+
"type": {
|
|
8671
|
+
"text": "unknown"
|
|
8672
|
+
}
|
|
8673
|
+
},
|
|
8674
|
+
{
|
|
8675
|
+
"name": "inner",
|
|
8676
|
+
"type": {
|
|
8677
|
+
"text": "() => TInner"
|
|
8678
|
+
}
|
|
8679
|
+
},
|
|
8680
|
+
{
|
|
8681
|
+
"name": "wrapper",
|
|
8682
|
+
"type": {
|
|
8683
|
+
"text": "(inner: TInner) => TWrapper"
|
|
8684
|
+
}
|
|
8685
|
+
}
|
|
8686
|
+
]
|
|
8687
|
+
},
|
|
8688
|
+
{
|
|
8689
|
+
"kind": "function",
|
|
8690
|
+
"name": "wrapIf",
|
|
8691
|
+
"parameters": [
|
|
8692
|
+
{
|
|
8693
|
+
"name": "condition",
|
|
8694
|
+
"type": {
|
|
8695
|
+
"text": "any"
|
|
8696
|
+
}
|
|
8697
|
+
},
|
|
8698
|
+
{
|
|
8699
|
+
"name": "inner",
|
|
8700
|
+
"type": {
|
|
8701
|
+
"text": "() => TInner"
|
|
8702
|
+
}
|
|
8703
|
+
},
|
|
8704
|
+
{
|
|
8705
|
+
"name": "wrapper",
|
|
8706
|
+
"type": {
|
|
8707
|
+
"text": "(innards: TInner) => TWrapper"
|
|
8708
|
+
}
|
|
8709
|
+
}
|
|
8710
|
+
],
|
|
8711
|
+
"return": {
|
|
8712
|
+
"type": {
|
|
8713
|
+
"text": ""
|
|
8714
|
+
}
|
|
8715
|
+
}
|
|
8716
|
+
}
|
|
8717
|
+
],
|
|
8718
|
+
"exports": [
|
|
8719
|
+
{
|
|
8720
|
+
"kind": "js",
|
|
8721
|
+
"name": "wrapIf",
|
|
8722
|
+
"declaration": {
|
|
8723
|
+
"name": "wrapIf",
|
|
8724
|
+
"module": "src/common/directives/wrapIf.ts"
|
|
8725
|
+
}
|
|
8726
|
+
},
|
|
8727
|
+
{
|
|
8728
|
+
"kind": "js",
|
|
8729
|
+
"name": "wrapIf",
|
|
8730
|
+
"declaration": {
|
|
8731
|
+
"name": "wrapIf",
|
|
8732
|
+
"module": "src/common/directives/wrapIf.ts"
|
|
8733
|
+
}
|
|
8734
|
+
},
|
|
8735
|
+
{
|
|
8736
|
+
"kind": "js",
|
|
8737
|
+
"name": "wrapIf",
|
|
8738
|
+
"declaration": {
|
|
8739
|
+
"name": "wrapIf",
|
|
8740
|
+
"module": "src/common/directives/wrapIf.ts"
|
|
8741
|
+
}
|
|
8742
|
+
},
|
|
8743
|
+
{
|
|
8744
|
+
"kind": "js",
|
|
8745
|
+
"name": "wrapIf",
|
|
8746
|
+
"declaration": {
|
|
8747
|
+
"name": "wrapIf",
|
|
8748
|
+
"module": "src/common/directives/wrapIf.ts"
|
|
8749
|
+
}
|
|
8750
|
+
}
|
|
8751
|
+
]
|
|
8752
|
+
},
|
|
8559
8753
|
{
|
|
8560
8754
|
"kind": "javascript-module",
|
|
8561
8755
|
"path": "src/common/controllers/DirectionController.ts",
|
|
@@ -9270,182 +9464,6 @@
|
|
|
9270
9464
|
}
|
|
9271
9465
|
]
|
|
9272
9466
|
},
|
|
9273
|
-
{
|
|
9274
|
-
"kind": "javascript-module",
|
|
9275
|
-
"path": "src/common/directives/cond.ts",
|
|
9276
|
-
"declarations": [
|
|
9277
|
-
{
|
|
9278
|
-
"kind": "variable",
|
|
9279
|
-
"name": "cond"
|
|
9280
|
-
}
|
|
9281
|
-
],
|
|
9282
|
-
"exports": [
|
|
9283
|
-
{
|
|
9284
|
-
"kind": "js",
|
|
9285
|
-
"name": "cond",
|
|
9286
|
-
"declaration": {
|
|
9287
|
-
"name": "cond",
|
|
9288
|
-
"module": "src/common/directives/cond.ts"
|
|
9289
|
-
}
|
|
9290
|
-
}
|
|
9291
|
-
]
|
|
9292
|
-
},
|
|
9293
|
-
{
|
|
9294
|
-
"kind": "javascript-module",
|
|
9295
|
-
"path": "src/common/directives/wrapIf.ts",
|
|
9296
|
-
"declarations": [
|
|
9297
|
-
{
|
|
9298
|
-
"kind": "function",
|
|
9299
|
-
"name": "wrapIf",
|
|
9300
|
-
"return": {
|
|
9301
|
-
"type": {
|
|
9302
|
-
"text": "TInner"
|
|
9303
|
-
}
|
|
9304
|
-
},
|
|
9305
|
-
"parameters": [
|
|
9306
|
-
{
|
|
9307
|
-
"name": "condition",
|
|
9308
|
-
"type": {
|
|
9309
|
-
"text": "false"
|
|
9310
|
-
}
|
|
9311
|
-
},
|
|
9312
|
-
{
|
|
9313
|
-
"name": "inner",
|
|
9314
|
-
"type": {
|
|
9315
|
-
"text": "() => TInner"
|
|
9316
|
-
}
|
|
9317
|
-
},
|
|
9318
|
-
{
|
|
9319
|
-
"name": "wrapper",
|
|
9320
|
-
"type": {
|
|
9321
|
-
"text": "(inner: TInner) => TWrapper"
|
|
9322
|
-
}
|
|
9323
|
-
}
|
|
9324
|
-
]
|
|
9325
|
-
},
|
|
9326
|
-
{
|
|
9327
|
-
"kind": "function",
|
|
9328
|
-
"name": "wrapIf",
|
|
9329
|
-
"return": {
|
|
9330
|
-
"type": {
|
|
9331
|
-
"text": "TWrapper"
|
|
9332
|
-
}
|
|
9333
|
-
},
|
|
9334
|
-
"parameters": [
|
|
9335
|
-
{
|
|
9336
|
-
"name": "condition",
|
|
9337
|
-
"type": {
|
|
9338
|
-
"text": "true"
|
|
9339
|
-
}
|
|
9340
|
-
},
|
|
9341
|
-
{
|
|
9342
|
-
"name": "inner",
|
|
9343
|
-
"type": {
|
|
9344
|
-
"text": "() => TInner"
|
|
9345
|
-
}
|
|
9346
|
-
},
|
|
9347
|
-
{
|
|
9348
|
-
"name": "wrapper",
|
|
9349
|
-
"type": {
|
|
9350
|
-
"text": "(inner: TInner) => TWrapper"
|
|
9351
|
-
}
|
|
9352
|
-
}
|
|
9353
|
-
]
|
|
9354
|
-
},
|
|
9355
|
-
{
|
|
9356
|
-
"kind": "function",
|
|
9357
|
-
"name": "wrapIf",
|
|
9358
|
-
"return": {
|
|
9359
|
-
"type": {
|
|
9360
|
-
"text": "TInner | TWrapper"
|
|
9361
|
-
}
|
|
9362
|
-
},
|
|
9363
|
-
"parameters": [
|
|
9364
|
-
{
|
|
9365
|
-
"name": "condition",
|
|
9366
|
-
"type": {
|
|
9367
|
-
"text": "unknown"
|
|
9368
|
-
}
|
|
9369
|
-
},
|
|
9370
|
-
{
|
|
9371
|
-
"name": "inner",
|
|
9372
|
-
"type": {
|
|
9373
|
-
"text": "() => TInner"
|
|
9374
|
-
}
|
|
9375
|
-
},
|
|
9376
|
-
{
|
|
9377
|
-
"name": "wrapper",
|
|
9378
|
-
"type": {
|
|
9379
|
-
"text": "(inner: TInner) => TWrapper"
|
|
9380
|
-
}
|
|
9381
|
-
}
|
|
9382
|
-
]
|
|
9383
|
-
},
|
|
9384
|
-
{
|
|
9385
|
-
"kind": "function",
|
|
9386
|
-
"name": "wrapIf",
|
|
9387
|
-
"parameters": [
|
|
9388
|
-
{
|
|
9389
|
-
"name": "condition",
|
|
9390
|
-
"type": {
|
|
9391
|
-
"text": "any"
|
|
9392
|
-
}
|
|
9393
|
-
},
|
|
9394
|
-
{
|
|
9395
|
-
"name": "inner",
|
|
9396
|
-
"type": {
|
|
9397
|
-
"text": "() => TInner"
|
|
9398
|
-
}
|
|
9399
|
-
},
|
|
9400
|
-
{
|
|
9401
|
-
"name": "wrapper",
|
|
9402
|
-
"type": {
|
|
9403
|
-
"text": "(innards: TInner) => TWrapper"
|
|
9404
|
-
}
|
|
9405
|
-
}
|
|
9406
|
-
],
|
|
9407
|
-
"return": {
|
|
9408
|
-
"type": {
|
|
9409
|
-
"text": ""
|
|
9410
|
-
}
|
|
9411
|
-
}
|
|
9412
|
-
}
|
|
9413
|
-
],
|
|
9414
|
-
"exports": [
|
|
9415
|
-
{
|
|
9416
|
-
"kind": "js",
|
|
9417
|
-
"name": "wrapIf",
|
|
9418
|
-
"declaration": {
|
|
9419
|
-
"name": "wrapIf",
|
|
9420
|
-
"module": "src/common/directives/wrapIf.ts"
|
|
9421
|
-
}
|
|
9422
|
-
},
|
|
9423
|
-
{
|
|
9424
|
-
"kind": "js",
|
|
9425
|
-
"name": "wrapIf",
|
|
9426
|
-
"declaration": {
|
|
9427
|
-
"name": "wrapIf",
|
|
9428
|
-
"module": "src/common/directives/wrapIf.ts"
|
|
9429
|
-
}
|
|
9430
|
-
},
|
|
9431
|
-
{
|
|
9432
|
-
"kind": "js",
|
|
9433
|
-
"name": "wrapIf",
|
|
9434
|
-
"declaration": {
|
|
9435
|
-
"name": "wrapIf",
|
|
9436
|
-
"module": "src/common/directives/wrapIf.ts"
|
|
9437
|
-
}
|
|
9438
|
-
},
|
|
9439
|
-
{
|
|
9440
|
-
"kind": "js",
|
|
9441
|
-
"name": "wrapIf",
|
|
9442
|
-
"declaration": {
|
|
9443
|
-
"name": "wrapIf",
|
|
9444
|
-
"module": "src/common/directives/wrapIf.ts"
|
|
9445
|
-
}
|
|
9446
|
-
}
|
|
9447
|
-
]
|
|
9448
|
-
},
|
|
9449
9467
|
{
|
|
9450
9468
|
"kind": "javascript-module",
|
|
9451
9469
|
"path": "src/common/mixins/DraftComponentMixin.ts",
|