@nordhealth/components 2.15.2 → 2.16.0
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 +263 -244
- package/lib/Avatar.js +1 -1
- package/lib/Avatar.js.map +1 -1
- package/lib/bundle.js +1 -1
- package/lib/bundle.js.map +1 -1
- package/lib/src/avatar/Avatar.d.ts +8 -3
- package/package.json +2 -2
package/custom-elements.json
CHANGED
|
@@ -407,7 +407,7 @@
|
|
|
407
407
|
"declarations": [
|
|
408
408
|
{
|
|
409
409
|
"kind": "class",
|
|
410
|
-
"description": "Avatar is used for showing a thumbnail representation of a user or entity.\nDefault avatar illustration is displayed when no src is specified.",
|
|
410
|
+
"description": "Avatar is used for showing a thumbnail representation of a single user or entity.\nDefault avatar illustration is displayed when no src is specified.",
|
|
411
411
|
"name": "Avatar",
|
|
412
412
|
"cssProperties": [
|
|
413
413
|
{
|
|
@@ -435,7 +435,7 @@
|
|
|
435
435
|
"kind": "field",
|
|
436
436
|
"name": "size",
|
|
437
437
|
"type": {
|
|
438
|
-
"text": "\"s\" | \"m\" | \"l\" | \"xl\" | \"xxl\""
|
|
438
|
+
"text": "\"s\" | \"m\" | \"l\" | \"xl\" | \"xxl\" | \"xxxl\""
|
|
439
439
|
},
|
|
440
440
|
"default": "\"m\"",
|
|
441
441
|
"description": "The size of the avatar.",
|
|
@@ -459,9 +459,19 @@
|
|
|
459
459
|
"text": "string"
|
|
460
460
|
},
|
|
461
461
|
"default": "\"\"",
|
|
462
|
-
"description": "The name of the person.",
|
|
462
|
+
"description": "The name of the person or entity.",
|
|
463
463
|
"attribute": "name"
|
|
464
464
|
},
|
|
465
|
+
{
|
|
466
|
+
"kind": "field",
|
|
467
|
+
"name": "icon",
|
|
468
|
+
"type": {
|
|
469
|
+
"text": "string"
|
|
470
|
+
},
|
|
471
|
+
"default": "\"\"",
|
|
472
|
+
"description": "The fallback icon.",
|
|
473
|
+
"attribute": "icon"
|
|
474
|
+
},
|
|
465
475
|
{
|
|
466
476
|
"kind": "field",
|
|
467
477
|
"name": "variant",
|
|
@@ -503,7 +513,7 @@
|
|
|
503
513
|
{
|
|
504
514
|
"name": "size",
|
|
505
515
|
"type": {
|
|
506
|
-
"text": "\"s\" | \"m\" | \"l\" | \"xl\" | \"xxl\""
|
|
516
|
+
"text": "\"s\" | \"m\" | \"l\" | \"xl\" | \"xxl\" | \"xxxl\""
|
|
507
517
|
},
|
|
508
518
|
"default": "\"m\"",
|
|
509
519
|
"description": "The size of the avatar.",
|
|
@@ -523,9 +533,18 @@
|
|
|
523
533
|
"text": "string"
|
|
524
534
|
},
|
|
525
535
|
"default": "\"\"",
|
|
526
|
-
"description": "The name of the person.",
|
|
536
|
+
"description": "The name of the person or entity.",
|
|
527
537
|
"fieldName": "name"
|
|
528
538
|
},
|
|
539
|
+
{
|
|
540
|
+
"name": "icon",
|
|
541
|
+
"type": {
|
|
542
|
+
"text": "string"
|
|
543
|
+
},
|
|
544
|
+
"default": "\"\"",
|
|
545
|
+
"description": "The fallback icon.",
|
|
546
|
+
"fieldName": "icon"
|
|
547
|
+
},
|
|
529
548
|
{
|
|
530
549
|
"name": "variant",
|
|
531
550
|
"type": {
|
|
@@ -543,7 +562,7 @@
|
|
|
543
562
|
"localization": [],
|
|
544
563
|
"status": "ready",
|
|
545
564
|
"category": "image",
|
|
546
|
-
"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- Always add the name of the person using the `name` property.\n- For the best results, use square images or images cropped into a square.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Try to avoid using landscape or portrait images as avatars. Let users crop their images before or after uploading if possible.\n\n</div>\n",
|
|
565
|
+
"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- Always add the name of the person using the `name` property.\n- For the best results, use square images or images cropped into a square.\n- Use the avatar to represent a single user, pet or entity.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Try to avoid using landscape or portrait images as avatars. Let users crop their images before or after uploading if possible.\n- Don't use an avatar when an icon is more suitable, for example when denoting groups or \"things\".\n\n</div>\n",
|
|
547
566
|
"examples": [],
|
|
548
567
|
"tagName": "nord-avatar",
|
|
549
568
|
"customElement": true
|
|
@@ -8846,73 +8865,6 @@
|
|
|
8846
8865
|
}
|
|
8847
8866
|
]
|
|
8848
8867
|
},
|
|
8849
|
-
{
|
|
8850
|
-
"kind": "javascript-module",
|
|
8851
|
-
"path": "src/nav-group/NavGroup.ts",
|
|
8852
|
-
"declarations": [
|
|
8853
|
-
{
|
|
8854
|
-
"kind": "class",
|
|
8855
|
-
"description": "Navigation group includes all the actions or items in a single\ngroup and is used for grouping items into related categories.",
|
|
8856
|
-
"name": "NavGroup",
|
|
8857
|
-
"slots": [
|
|
8858
|
-
{
|
|
8859
|
-
"description": "The default slot used for the nav items.",
|
|
8860
|
-
"name": ""
|
|
8861
|
-
}
|
|
8862
|
-
],
|
|
8863
|
-
"members": [
|
|
8864
|
-
{
|
|
8865
|
-
"kind": "field",
|
|
8866
|
-
"name": "heading",
|
|
8867
|
-
"type": {
|
|
8868
|
-
"text": "string | undefined"
|
|
8869
|
-
},
|
|
8870
|
-
"description": "Heading and accessible label for the nav group",
|
|
8871
|
-
"attribute": "heading"
|
|
8872
|
-
}
|
|
8873
|
-
],
|
|
8874
|
-
"attributes": [
|
|
8875
|
-
{
|
|
8876
|
-
"name": "heading",
|
|
8877
|
-
"type": {
|
|
8878
|
-
"text": "string | undefined"
|
|
8879
|
-
},
|
|
8880
|
-
"description": "Heading and accessible label for the nav group",
|
|
8881
|
-
"fieldName": "heading"
|
|
8882
|
-
}
|
|
8883
|
-
],
|
|
8884
|
-
"superclass": {
|
|
8885
|
-
"name": "LitElement",
|
|
8886
|
-
"package": "lit"
|
|
8887
|
-
},
|
|
8888
|
-
"localization": [],
|
|
8889
|
-
"status": "ready",
|
|
8890
|
-
"category": "navigation",
|
|
8891
|
-
"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- Group navigation items into navigation groups based on related categories.\n- Use group headings to clarify the category of a section.\n- Use icons for all top level navigation items.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t use for grouping other types of content.\n\n</div>\n\n---\n\n## Content guidelines\n\nWhen writing navigation item 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\">My tasks</div>\n<div class=\"n-usage n-usage-dont\">My Tasks</div>\n\nAvoid unnecessary words and articles in item labels, such as “the”, “an” or “a”:\n\n<div class=\"n-usage n-usage-do\">Change theme</div>\n<div class=\"n-usage n-usage-dont\">Change the theme</div>\n\nAvoid ending item labels in punctuation:\n\n<div class=\"n-usage n-usage-do\">Switch user</div>\n<div class=\"n-usage n-usage-dont\">Switch user.</div>\n\nUse as few words as possible to describe each item label:\n\n<div class=\"n-usage n-usage-do\">Payments</div>\n<div class=\"n-usage n-usage-dont\">Payments in your clinic</div>\n\nAvoid all caps for item labels and group titles:\n\n<div class=\"n-usage n-usage-do\">Dashboard</div>\n<div class=\"n-usage n-usage-dont\">DASHBOARD</div>\n",
|
|
8892
|
-
"examples": [],
|
|
8893
|
-
"tagName": "nord-nav-group",
|
|
8894
|
-
"customElement": true
|
|
8895
|
-
}
|
|
8896
|
-
],
|
|
8897
|
-
"exports": [
|
|
8898
|
-
{
|
|
8899
|
-
"kind": "js",
|
|
8900
|
-
"name": "default",
|
|
8901
|
-
"declaration": {
|
|
8902
|
-
"name": "NavGroup",
|
|
8903
|
-
"module": "src/nav-group/NavGroup.ts"
|
|
8904
|
-
}
|
|
8905
|
-
},
|
|
8906
|
-
{
|
|
8907
|
-
"kind": "custom-element-definition",
|
|
8908
|
-
"name": "nord-nav-group",
|
|
8909
|
-
"declaration": {
|
|
8910
|
-
"name": "NavGroup",
|
|
8911
|
-
"module": "src/nav-group/NavGroup.ts"
|
|
8912
|
-
}
|
|
8913
|
-
}
|
|
8914
|
-
]
|
|
8915
|
-
},
|
|
8916
8868
|
{
|
|
8917
8869
|
"kind": "javascript-module",
|
|
8918
8870
|
"path": "src/nav-item/NavItem.ts",
|
|
@@ -9174,6 +9126,73 @@
|
|
|
9174
9126
|
}
|
|
9175
9127
|
]
|
|
9176
9128
|
},
|
|
9129
|
+
{
|
|
9130
|
+
"kind": "javascript-module",
|
|
9131
|
+
"path": "src/nav-group/NavGroup.ts",
|
|
9132
|
+
"declarations": [
|
|
9133
|
+
{
|
|
9134
|
+
"kind": "class",
|
|
9135
|
+
"description": "Navigation group includes all the actions or items in a single\ngroup and is used for grouping items into related categories.",
|
|
9136
|
+
"name": "NavGroup",
|
|
9137
|
+
"slots": [
|
|
9138
|
+
{
|
|
9139
|
+
"description": "The default slot used for the nav items.",
|
|
9140
|
+
"name": ""
|
|
9141
|
+
}
|
|
9142
|
+
],
|
|
9143
|
+
"members": [
|
|
9144
|
+
{
|
|
9145
|
+
"kind": "field",
|
|
9146
|
+
"name": "heading",
|
|
9147
|
+
"type": {
|
|
9148
|
+
"text": "string | undefined"
|
|
9149
|
+
},
|
|
9150
|
+
"description": "Heading and accessible label for the nav group",
|
|
9151
|
+
"attribute": "heading"
|
|
9152
|
+
}
|
|
9153
|
+
],
|
|
9154
|
+
"attributes": [
|
|
9155
|
+
{
|
|
9156
|
+
"name": "heading",
|
|
9157
|
+
"type": {
|
|
9158
|
+
"text": "string | undefined"
|
|
9159
|
+
},
|
|
9160
|
+
"description": "Heading and accessible label for the nav group",
|
|
9161
|
+
"fieldName": "heading"
|
|
9162
|
+
}
|
|
9163
|
+
],
|
|
9164
|
+
"superclass": {
|
|
9165
|
+
"name": "LitElement",
|
|
9166
|
+
"package": "lit"
|
|
9167
|
+
},
|
|
9168
|
+
"localization": [],
|
|
9169
|
+
"status": "ready",
|
|
9170
|
+
"category": "navigation",
|
|
9171
|
+
"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- Group navigation items into navigation groups based on related categories.\n- Use group headings to clarify the category of a section.\n- Use icons for all top level navigation items.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t use for grouping other types of content.\n\n</div>\n\n---\n\n## Content guidelines\n\nWhen writing navigation item 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\">My tasks</div>\n<div class=\"n-usage n-usage-dont\">My Tasks</div>\n\nAvoid unnecessary words and articles in item labels, such as “the”, “an” or “a”:\n\n<div class=\"n-usage n-usage-do\">Change theme</div>\n<div class=\"n-usage n-usage-dont\">Change the theme</div>\n\nAvoid ending item labels in punctuation:\n\n<div class=\"n-usage n-usage-do\">Switch user</div>\n<div class=\"n-usage n-usage-dont\">Switch user.</div>\n\nUse as few words as possible to describe each item label:\n\n<div class=\"n-usage n-usage-do\">Payments</div>\n<div class=\"n-usage n-usage-dont\">Payments in your clinic</div>\n\nAvoid all caps for item labels and group titles:\n\n<div class=\"n-usage n-usage-do\">Dashboard</div>\n<div class=\"n-usage n-usage-dont\">DASHBOARD</div>\n",
|
|
9172
|
+
"examples": [],
|
|
9173
|
+
"tagName": "nord-nav-group",
|
|
9174
|
+
"customElement": true
|
|
9175
|
+
}
|
|
9176
|
+
],
|
|
9177
|
+
"exports": [
|
|
9178
|
+
{
|
|
9179
|
+
"kind": "js",
|
|
9180
|
+
"name": "default",
|
|
9181
|
+
"declaration": {
|
|
9182
|
+
"name": "NavGroup",
|
|
9183
|
+
"module": "src/nav-group/NavGroup.ts"
|
|
9184
|
+
}
|
|
9185
|
+
},
|
|
9186
|
+
{
|
|
9187
|
+
"kind": "custom-element-definition",
|
|
9188
|
+
"name": "nord-nav-group",
|
|
9189
|
+
"declaration": {
|
|
9190
|
+
"name": "NavGroup",
|
|
9191
|
+
"module": "src/nav-group/NavGroup.ts"
|
|
9192
|
+
}
|
|
9193
|
+
}
|
|
9194
|
+
]
|
|
9195
|
+
},
|
|
9177
9196
|
{
|
|
9178
9197
|
"kind": "javascript-module",
|
|
9179
9198
|
"path": "src/nav-toggle/NavToggle.ts",
|
|
@@ -9706,177 +9725,6 @@
|
|
|
9706
9725
|
}
|
|
9707
9726
|
]
|
|
9708
9727
|
},
|
|
9709
|
-
{
|
|
9710
|
-
"kind": "javascript-module",
|
|
9711
|
-
"path": "src/progress-bar/ProgressBar.ts",
|
|
9712
|
-
"declarations": [
|
|
9713
|
-
{
|
|
9714
|
-
"kind": "class",
|
|
9715
|
-
"description": "Progress Bar is used to visually represent the completion\nof a task or process. It shows how much of the task has\nbeen completed and how much is still left.",
|
|
9716
|
-
"name": "ProgressBar",
|
|
9717
|
-
"cssProperties": [
|
|
9718
|
-
{
|
|
9719
|
-
"description": "Controls the thickness of the progress bar, using our [spacing tokens](/tokens/#space).",
|
|
9720
|
-
"name": "--n-progress-size",
|
|
9721
|
-
"default": "var(--n-space-s)"
|
|
9722
|
-
},
|
|
9723
|
-
{
|
|
9724
|
-
"description": "Controls how rounded the corners are, using [border radius tokens](/tokens/#border-radius).",
|
|
9725
|
-
"name": "--n-progress-border-radius",
|
|
9726
|
-
"default": "var(--n-border-radius-s)"
|
|
9727
|
-
},
|
|
9728
|
-
{
|
|
9729
|
-
"description": "Controls the color of the progress bar, using [color tokens](/tokens/#color).",
|
|
9730
|
-
"name": "--n-progress-color",
|
|
9731
|
-
"default": "var(--n-color-accent)"
|
|
9732
|
-
}
|
|
9733
|
-
],
|
|
9734
|
-
"members": [
|
|
9735
|
-
{
|
|
9736
|
-
"kind": "field",
|
|
9737
|
-
"name": "value",
|
|
9738
|
-
"type": {
|
|
9739
|
-
"text": "number | undefined"
|
|
9740
|
-
},
|
|
9741
|
-
"description": "Specifies how much of the task has been completed. Must be a valid floating\npoint number between 0 and max, or between 0 and 100 if max is omitted. If\nthere is no value, the progress bar is indeterminate; this indicates that\nan activity is ongoing with no indication of how long it’s expected to take.",
|
|
9742
|
-
"attribute": "value",
|
|
9743
|
-
"reflects": true
|
|
9744
|
-
},
|
|
9745
|
-
{
|
|
9746
|
-
"kind": "field",
|
|
9747
|
-
"name": "max",
|
|
9748
|
-
"type": {
|
|
9749
|
-
"text": "number"
|
|
9750
|
-
},
|
|
9751
|
-
"default": "100",
|
|
9752
|
-
"description": "Describes how much work the task indicated by the progress element requires.\nThe max attribute, if present, must have a value greater than 0 and be a\nvalid floating point number.",
|
|
9753
|
-
"attribute": "max",
|
|
9754
|
-
"reflects": true
|
|
9755
|
-
},
|
|
9756
|
-
{
|
|
9757
|
-
"kind": "field",
|
|
9758
|
-
"name": "label",
|
|
9759
|
-
"type": {
|
|
9760
|
-
"text": "string"
|
|
9761
|
-
},
|
|
9762
|
-
"default": "\"Current progress\"",
|
|
9763
|
-
"description": "Accessible label for the progress indicator. Visually hidden, but shown\nfor assistive technology.",
|
|
9764
|
-
"attribute": "label",
|
|
9765
|
-
"reflects": true
|
|
9766
|
-
},
|
|
9767
|
-
{
|
|
9768
|
-
"kind": "field",
|
|
9769
|
-
"name": "focusableRef",
|
|
9770
|
-
"privacy": "protected",
|
|
9771
|
-
"inheritedFrom": {
|
|
9772
|
-
"name": "FocusableMixin",
|
|
9773
|
-
"module": "src/common/mixins/FocusableMixin.ts"
|
|
9774
|
-
}
|
|
9775
|
-
},
|
|
9776
|
-
{
|
|
9777
|
-
"kind": "method",
|
|
9778
|
-
"name": "focus",
|
|
9779
|
-
"parameters": [
|
|
9780
|
-
{
|
|
9781
|
-
"name": "options",
|
|
9782
|
-
"optional": true,
|
|
9783
|
-
"type": {
|
|
9784
|
-
"text": "FocusOptions"
|
|
9785
|
-
},
|
|
9786
|
-
"description": "An object which controls aspects of the focusing process."
|
|
9787
|
-
}
|
|
9788
|
-
],
|
|
9789
|
-
"description": "Programmatically move focus to the component.",
|
|
9790
|
-
"inheritedFrom": {
|
|
9791
|
-
"name": "FocusableMixin",
|
|
9792
|
-
"module": "src/common/mixins/FocusableMixin.ts"
|
|
9793
|
-
}
|
|
9794
|
-
},
|
|
9795
|
-
{
|
|
9796
|
-
"kind": "method",
|
|
9797
|
-
"name": "blur",
|
|
9798
|
-
"description": "Programmatically remove focus from the component.",
|
|
9799
|
-
"inheritedFrom": {
|
|
9800
|
-
"name": "FocusableMixin",
|
|
9801
|
-
"module": "src/common/mixins/FocusableMixin.ts"
|
|
9802
|
-
}
|
|
9803
|
-
},
|
|
9804
|
-
{
|
|
9805
|
-
"kind": "method",
|
|
9806
|
-
"name": "click",
|
|
9807
|
-
"description": "Programmatically simulates a click on the component.",
|
|
9808
|
-
"inheritedFrom": {
|
|
9809
|
-
"name": "FocusableMixin",
|
|
9810
|
-
"module": "src/common/mixins/FocusableMixin.ts"
|
|
9811
|
-
}
|
|
9812
|
-
}
|
|
9813
|
-
],
|
|
9814
|
-
"attributes": [
|
|
9815
|
-
{
|
|
9816
|
-
"name": "value",
|
|
9817
|
-
"type": {
|
|
9818
|
-
"text": "number | undefined"
|
|
9819
|
-
},
|
|
9820
|
-
"description": "Specifies how much of the task has been completed. Must be a valid floating\npoint number between 0 and max, or between 0 and 100 if max is omitted. If\nthere is no value, the progress bar is indeterminate; this indicates that\nan activity is ongoing with no indication of how long it’s expected to take.",
|
|
9821
|
-
"fieldName": "value"
|
|
9822
|
-
},
|
|
9823
|
-
{
|
|
9824
|
-
"name": "max",
|
|
9825
|
-
"type": {
|
|
9826
|
-
"text": "number"
|
|
9827
|
-
},
|
|
9828
|
-
"default": "100",
|
|
9829
|
-
"description": "Describes how much work the task indicated by the progress element requires.\nThe max attribute, if present, must have a value greater than 0 and be a\nvalid floating point number.",
|
|
9830
|
-
"fieldName": "max"
|
|
9831
|
-
},
|
|
9832
|
-
{
|
|
9833
|
-
"name": "label",
|
|
9834
|
-
"type": {
|
|
9835
|
-
"text": "string"
|
|
9836
|
-
},
|
|
9837
|
-
"default": "\"Current progress\"",
|
|
9838
|
-
"description": "Accessible label for the progress indicator. Visually hidden, but shown\nfor assistive technology.",
|
|
9839
|
-
"fieldName": "label"
|
|
9840
|
-
}
|
|
9841
|
-
],
|
|
9842
|
-
"mixins": [
|
|
9843
|
-
{
|
|
9844
|
-
"name": "FocusableMixin",
|
|
9845
|
-
"module": "/src/common/mixins/FocusableMixin.js"
|
|
9846
|
-
}
|
|
9847
|
-
],
|
|
9848
|
-
"superclass": {
|
|
9849
|
-
"name": "LitElement",
|
|
9850
|
-
"package": "lit"
|
|
9851
|
-
},
|
|
9852
|
-
"localization": [],
|
|
9853
|
-
"status": "ready",
|
|
9854
|
-
"category": "feedback",
|
|
9855
|
-
"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 the completion status of an ongoing task.\n- Use progress bar when you can determine the percentage of the completed task at any time.\n- Always provide an accessible label when using Progress Bar.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t use in constrained spaces indicating indeterminate loading state, see [Spinner](/components/spinner/) instead.\n\n</div>\n",
|
|
9856
|
-
"examples": [],
|
|
9857
|
-
"tagName": "nord-progress-bar",
|
|
9858
|
-
"customElement": true
|
|
9859
|
-
}
|
|
9860
|
-
],
|
|
9861
|
-
"exports": [
|
|
9862
|
-
{
|
|
9863
|
-
"kind": "js",
|
|
9864
|
-
"name": "default",
|
|
9865
|
-
"declaration": {
|
|
9866
|
-
"name": "ProgressBar",
|
|
9867
|
-
"module": "src/progress-bar/ProgressBar.ts"
|
|
9868
|
-
}
|
|
9869
|
-
},
|
|
9870
|
-
{
|
|
9871
|
-
"kind": "custom-element-definition",
|
|
9872
|
-
"name": "nord-progress-bar",
|
|
9873
|
-
"declaration": {
|
|
9874
|
-
"name": "ProgressBar",
|
|
9875
|
-
"module": "src/progress-bar/ProgressBar.ts"
|
|
9876
|
-
}
|
|
9877
|
-
}
|
|
9878
|
-
]
|
|
9879
|
-
},
|
|
9880
9728
|
{
|
|
9881
9729
|
"kind": "javascript-module",
|
|
9882
9730
|
"path": "src/qrcode/Qrcode.ts",
|
|
@@ -10063,6 +9911,177 @@
|
|
|
10063
9911
|
}
|
|
10064
9912
|
]
|
|
10065
9913
|
},
|
|
9914
|
+
{
|
|
9915
|
+
"kind": "javascript-module",
|
|
9916
|
+
"path": "src/progress-bar/ProgressBar.ts",
|
|
9917
|
+
"declarations": [
|
|
9918
|
+
{
|
|
9919
|
+
"kind": "class",
|
|
9920
|
+
"description": "Progress Bar is used to visually represent the completion\nof a task or process. It shows how much of the task has\nbeen completed and how much is still left.",
|
|
9921
|
+
"name": "ProgressBar",
|
|
9922
|
+
"cssProperties": [
|
|
9923
|
+
{
|
|
9924
|
+
"description": "Controls the thickness of the progress bar, using our [spacing tokens](/tokens/#space).",
|
|
9925
|
+
"name": "--n-progress-size",
|
|
9926
|
+
"default": "var(--n-space-s)"
|
|
9927
|
+
},
|
|
9928
|
+
{
|
|
9929
|
+
"description": "Controls how rounded the corners are, using [border radius tokens](/tokens/#border-radius).",
|
|
9930
|
+
"name": "--n-progress-border-radius",
|
|
9931
|
+
"default": "var(--n-border-radius-s)"
|
|
9932
|
+
},
|
|
9933
|
+
{
|
|
9934
|
+
"description": "Controls the color of the progress bar, using [color tokens](/tokens/#color).",
|
|
9935
|
+
"name": "--n-progress-color",
|
|
9936
|
+
"default": "var(--n-color-accent)"
|
|
9937
|
+
}
|
|
9938
|
+
],
|
|
9939
|
+
"members": [
|
|
9940
|
+
{
|
|
9941
|
+
"kind": "field",
|
|
9942
|
+
"name": "value",
|
|
9943
|
+
"type": {
|
|
9944
|
+
"text": "number | undefined"
|
|
9945
|
+
},
|
|
9946
|
+
"description": "Specifies how much of the task has been completed. Must be a valid floating\npoint number between 0 and max, or between 0 and 100 if max is omitted. If\nthere is no value, the progress bar is indeterminate; this indicates that\nan activity is ongoing with no indication of how long it’s expected to take.",
|
|
9947
|
+
"attribute": "value",
|
|
9948
|
+
"reflects": true
|
|
9949
|
+
},
|
|
9950
|
+
{
|
|
9951
|
+
"kind": "field",
|
|
9952
|
+
"name": "max",
|
|
9953
|
+
"type": {
|
|
9954
|
+
"text": "number"
|
|
9955
|
+
},
|
|
9956
|
+
"default": "100",
|
|
9957
|
+
"description": "Describes how much work the task indicated by the progress element requires.\nThe max attribute, if present, must have a value greater than 0 and be a\nvalid floating point number.",
|
|
9958
|
+
"attribute": "max",
|
|
9959
|
+
"reflects": true
|
|
9960
|
+
},
|
|
9961
|
+
{
|
|
9962
|
+
"kind": "field",
|
|
9963
|
+
"name": "label",
|
|
9964
|
+
"type": {
|
|
9965
|
+
"text": "string"
|
|
9966
|
+
},
|
|
9967
|
+
"default": "\"Current progress\"",
|
|
9968
|
+
"description": "Accessible label for the progress indicator. Visually hidden, but shown\nfor assistive technology.",
|
|
9969
|
+
"attribute": "label",
|
|
9970
|
+
"reflects": true
|
|
9971
|
+
},
|
|
9972
|
+
{
|
|
9973
|
+
"kind": "field",
|
|
9974
|
+
"name": "focusableRef",
|
|
9975
|
+
"privacy": "protected",
|
|
9976
|
+
"inheritedFrom": {
|
|
9977
|
+
"name": "FocusableMixin",
|
|
9978
|
+
"module": "src/common/mixins/FocusableMixin.ts"
|
|
9979
|
+
}
|
|
9980
|
+
},
|
|
9981
|
+
{
|
|
9982
|
+
"kind": "method",
|
|
9983
|
+
"name": "focus",
|
|
9984
|
+
"parameters": [
|
|
9985
|
+
{
|
|
9986
|
+
"name": "options",
|
|
9987
|
+
"optional": true,
|
|
9988
|
+
"type": {
|
|
9989
|
+
"text": "FocusOptions"
|
|
9990
|
+
},
|
|
9991
|
+
"description": "An object which controls aspects of the focusing process."
|
|
9992
|
+
}
|
|
9993
|
+
],
|
|
9994
|
+
"description": "Programmatically move focus to the component.",
|
|
9995
|
+
"inheritedFrom": {
|
|
9996
|
+
"name": "FocusableMixin",
|
|
9997
|
+
"module": "src/common/mixins/FocusableMixin.ts"
|
|
9998
|
+
}
|
|
9999
|
+
},
|
|
10000
|
+
{
|
|
10001
|
+
"kind": "method",
|
|
10002
|
+
"name": "blur",
|
|
10003
|
+
"description": "Programmatically remove focus from the component.",
|
|
10004
|
+
"inheritedFrom": {
|
|
10005
|
+
"name": "FocusableMixin",
|
|
10006
|
+
"module": "src/common/mixins/FocusableMixin.ts"
|
|
10007
|
+
}
|
|
10008
|
+
},
|
|
10009
|
+
{
|
|
10010
|
+
"kind": "method",
|
|
10011
|
+
"name": "click",
|
|
10012
|
+
"description": "Programmatically simulates a click on the component.",
|
|
10013
|
+
"inheritedFrom": {
|
|
10014
|
+
"name": "FocusableMixin",
|
|
10015
|
+
"module": "src/common/mixins/FocusableMixin.ts"
|
|
10016
|
+
}
|
|
10017
|
+
}
|
|
10018
|
+
],
|
|
10019
|
+
"attributes": [
|
|
10020
|
+
{
|
|
10021
|
+
"name": "value",
|
|
10022
|
+
"type": {
|
|
10023
|
+
"text": "number | undefined"
|
|
10024
|
+
},
|
|
10025
|
+
"description": "Specifies how much of the task has been completed. Must be a valid floating\npoint number between 0 and max, or between 0 and 100 if max is omitted. If\nthere is no value, the progress bar is indeterminate; this indicates that\nan activity is ongoing with no indication of how long it’s expected to take.",
|
|
10026
|
+
"fieldName": "value"
|
|
10027
|
+
},
|
|
10028
|
+
{
|
|
10029
|
+
"name": "max",
|
|
10030
|
+
"type": {
|
|
10031
|
+
"text": "number"
|
|
10032
|
+
},
|
|
10033
|
+
"default": "100",
|
|
10034
|
+
"description": "Describes how much work the task indicated by the progress element requires.\nThe max attribute, if present, must have a value greater than 0 and be a\nvalid floating point number.",
|
|
10035
|
+
"fieldName": "max"
|
|
10036
|
+
},
|
|
10037
|
+
{
|
|
10038
|
+
"name": "label",
|
|
10039
|
+
"type": {
|
|
10040
|
+
"text": "string"
|
|
10041
|
+
},
|
|
10042
|
+
"default": "\"Current progress\"",
|
|
10043
|
+
"description": "Accessible label for the progress indicator. Visually hidden, but shown\nfor assistive technology.",
|
|
10044
|
+
"fieldName": "label"
|
|
10045
|
+
}
|
|
10046
|
+
],
|
|
10047
|
+
"mixins": [
|
|
10048
|
+
{
|
|
10049
|
+
"name": "FocusableMixin",
|
|
10050
|
+
"module": "/src/common/mixins/FocusableMixin.js"
|
|
10051
|
+
}
|
|
10052
|
+
],
|
|
10053
|
+
"superclass": {
|
|
10054
|
+
"name": "LitElement",
|
|
10055
|
+
"package": "lit"
|
|
10056
|
+
},
|
|
10057
|
+
"localization": [],
|
|
10058
|
+
"status": "ready",
|
|
10059
|
+
"category": "feedback",
|
|
10060
|
+
"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 the completion status of an ongoing task.\n- Use progress bar when you can determine the percentage of the completed task at any time.\n- Always provide an accessible label when using Progress Bar.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t use in constrained spaces indicating indeterminate loading state, see [Spinner](/components/spinner/) instead.\n\n</div>\n",
|
|
10061
|
+
"examples": [],
|
|
10062
|
+
"tagName": "nord-progress-bar",
|
|
10063
|
+
"customElement": true
|
|
10064
|
+
}
|
|
10065
|
+
],
|
|
10066
|
+
"exports": [
|
|
10067
|
+
{
|
|
10068
|
+
"kind": "js",
|
|
10069
|
+
"name": "default",
|
|
10070
|
+
"declaration": {
|
|
10071
|
+
"name": "ProgressBar",
|
|
10072
|
+
"module": "src/progress-bar/ProgressBar.ts"
|
|
10073
|
+
}
|
|
10074
|
+
},
|
|
10075
|
+
{
|
|
10076
|
+
"kind": "custom-element-definition",
|
|
10077
|
+
"name": "nord-progress-bar",
|
|
10078
|
+
"declaration": {
|
|
10079
|
+
"name": "ProgressBar",
|
|
10080
|
+
"module": "src/progress-bar/ProgressBar.ts"
|
|
10081
|
+
}
|
|
10082
|
+
}
|
|
10083
|
+
]
|
|
10084
|
+
},
|
|
10066
10085
|
{
|
|
10067
10086
|
"kind": "javascript-module",
|
|
10068
10087
|
"path": "src/radio/Radio.ts",
|
package/lib/Avatar.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{i as a,_ as r,s as t,y as e,b as
|
|
1
|
+
import{i as a,_ as r,s as t,y as e,b as i,e as o}from"./query-assigned-elements-cf502539.js";import{e as n}from"./property-03f59dce.js";import{t as s}from"./state-70f38ceb.js";import{s as l}from"./Component-449e40fb.js";import{f as c}from"./fsm-50373df9.js";import{o as v}from"./observe-a9c6dfb6.js";import"./VisuallyHidden.js";import"./Icon.js";import"./if-defined-720964c0.js";import"./directive-de55b00a.js";import"./cond-2da54107.js";import"./IconManager.js";const d=a`:host{--_n-avatar-color:var(--n-avatar-color, var(--n-color-text-weaker));--_n-avatar-size:var(--n-avatar-size, var(--n-size-icon-l));--_n-avatar-border-radius:var(--n-border-radius-circle);--_n-avatar-font-size:var(--n-font-size-xs);--_n-avatar-box-shadow:none;--_n-avatar-text-color:var(--n-color-text-on-accent);display:inline-flex;block-size:var(--_n-avatar-size);inline-size:var(--_n-avatar-size)}:host(:empty) .n-avatar-inner,:host(:not(:empty)) svg{display:none}:host(:empty){--_n-avatar-color:var(--n-avatar-color, var(--n-color-border))}.n-avatar{background:var(--_n-avatar-color);border-radius:var(--_n-avatar-border-radius);box-shadow:var(--_n-avatar-box-shadow);overflow:hidden;inline-size:100%;block-size:100%;display:grid;place-items:center;color:var(--_n-avatar-text-color);font-size:var(--_n-avatar-font-size);font-weight:var(--n-font-weight-active)}img,svg{inline-size:100%;block-size:auto;object-fit:cover}nord-icon{--_n-icon-size:calc(var(--_n-avatar-size) / 1.6)}.n-loading{display:none}:host([size="s"]){--_n-avatar-size:var(--n-avatar-size, calc(var(--n-size-icon-xs) * 2));--_n-avatar-font-size:calc(var(--n-font-size-xs) / 1.1)}:host([size="l"]){--_n-avatar-size:var(--n-avatar-size, var(--n-size-icon-xl));--_n-avatar-font-size:var(--n-font-size-m)}:host([size=xl]){--_n-avatar-size:var(--n-avatar-size, calc(var(--n-size-icon-xl) + var(--n-size-icon-s)));--_n-avatar-font-size:var(--n-font-size-xl)}:host([size=xxl]){--_n-avatar-size:var(--n-avatar-size, var(--n-size-icon-xxl));--_n-avatar-font-size:var(--n-font-size-xxl)}:host([size=xxxl]){--_n-avatar-size:var(--n-avatar-size, calc(var(--n-size-icon-xxl) + var(--n-size-icon-xl)));--_n-avatar-font-size:var(--n-font-size-xxxl)}:host([variant=square]){--_n-avatar-color:var(--n-avatar-color, var(--n-color-accent));--_n-avatar-border-radius:var(--n-border-radius);--_n-avatar-box-shadow:var(--n-box-shadow)}:host([icon]){--_n-avatar-color:var(--n-avatar-color, var(--n-color-status-neutral-weak));--_n-avatar-text-color:var(--n-color-text)}`,{transition:h}=c({initial:{"src-set":"loading"},loading:{load:"loaded",error:"initial","src-clear":"initial"},loaded:{"src-set":"loading","src-clear":"initial"}});let z=class extends t{constructor(){super(...arguments),this.state="initial",this.size="m",this.name="",this.icon="",this.variant="default"}render(){return e`<div class="n-avatar">${"initial"!==this.state?this.renderImage():i} ${"loaded"!==this.state?this.renderFallback():i}</div>`}handleSrcChange(){const a=this.src?"src-set":"src-clear";this.state=h(this.state,a)}renderImage(){return this.src?e`<slot hidden></slot><img class="n-${this.state}" src="${this.src}" @load="${this.handleLoad}" @error="${this.handleError}" alt="${this.name||""}">`:i}renderFallback(){return e`<nord-visually-hidden>${this.name}</nord-visually-hidden><div class="n-avatar-inner" aria-hidden="true"><slot></slot></div>${this.icon?e`<nord-icon name="${this.icon}"></nord-icon>`:e`<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 27 27"><rect fill="var(--_n-avatar-color)" height="27" rx="12" width="27" x="0" y="0"></rect><g fill="#fff" opacity=".7"><circle cx="13.5" cy="30" r="13"></circle><circle cx="13.5" cy="11" r="5"></circle></g></svg>`}`}handleLoad(){this.state=h(this.state,"load")}handleError(){this.state=h(this.state,"error")}};z.styles=[l,d],r([s()],z.prototype,"state",void 0),r([n({reflect:!0})],z.prototype,"size",void 0),r([n({reflect:!0})],z.prototype,"src",void 0),r([n()],z.prototype,"name",void 0),r([n()],z.prototype,"icon",void 0),r([n({reflect:!0})],z.prototype,"variant",void 0),r([v("src")],z.prototype,"handleSrcChange",null),z=r([o("nord-avatar")],z);var f=z;export{f as default};
|
|
2
2
|
//# sourceMappingURL=Avatar.js.map
|
package/lib/Avatar.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Avatar.js","sources":["../src/avatar/Avatar.ts"],"sourcesContent":["import { LitElement, html, nothing } from \"lit\"\nimport { customElement, property, state } from \"lit/decorators.js\"\n\nimport componentStyle from \"../common/styles/Component.css\"\nimport style from \"./Avatar.css\"\nimport { fsm, States } from \"../common/fsm.js\"\nimport { observe } from \"../common/decorators/observe.js\"\nimport \"../visually-hidden/VisuallyHidden.js\"\n\nconst { transition } = fsm({\n initial: {\n \"src-set\": \"loading\",\n },\n loading: {\n load: \"loaded\",\n error: \"initial\",\n \"src-clear\": \"initial\",\n },\n loaded: {\n \"src-set\": \"loading\",\n \"src-clear\": \"initial\",\n },\n})\n\n/**\n * Avatar is used for showing a thumbnail representation of a user or entity.\n * Default avatar illustration is displayed when no src is specified.\n *\n * @status ready\n * @category image\n *\n * @cssprop [--n-avatar-color=var(--n-color-status-highlight)] - Controls the color of the avatar fallback, using [color tokens](/tokens/#color).\n * @cssprop [--n-avatar-size=var(--n-size-icon-l)] - Controls the size of the avatar, using [icon sizing tokens](/tokens/#size).\n */\n\n@customElement(\"nord-avatar\")\nexport default class Avatar extends LitElement {\n static styles = [componentStyle, style]\n\n @state() private state: States<typeof transition> = \"initial\"\n\n /**\n * The size of the avatar.\n */\n @property({ reflect: true }) size: \"s\" | \"m\" | \"l\" | \"xl\" | \"xxl\" = \"m\"\n\n /**\n * The URL of the avatar image uploaded by the user.\n */\n @property({ reflect: true }) src?: string\n\n /**\n * The name of the person.\n */\n @property() name: string = \"\"\n\n /**\n * The style variant of the avatar.\n */\n @property({ reflect: true }) variant: \"default\" | \"square\" = \"default\"\n\n render() {\n return html`\n <div class=\"n-avatar\">\n ${this.state !== \"initial\" ? this.renderImage() : nothing}\n ${this.state !== \"loaded\" ? this.renderFallback() : nothing}\n </div>\n `\n }\n\n @observe(\"src\")\n protected handleSrcChange() {\n const event = this.src ? \"src-set\" : \"src-clear\"\n this.state = transition(this.state, event)\n }\n\n protected renderImage() {\n return this.src\n ? html`\n <slot hidden></slot>\n <img\n class=\"n-${this.state}\"\n src=${this.src}\n @load=${this.handleLoad}\n @error=${this.handleError}\n alt=${this.name || \"\"}\n />\n `\n : nothing\n }\n\n protected renderFallback() {\n return html`\n <nord-visually-hidden>${this.name}</nord-visually-hidden>\n <div class=\"n-avatar-inner\" aria-hidden=\"true\">\n <slot></slot>\n </div>\n <svg aria-hidden=\"true\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 27 27\">\n
|
|
1
|
+
{"version":3,"file":"Avatar.js","sources":["../src/avatar/Avatar.ts"],"sourcesContent":["import { LitElement, html, nothing } from \"lit\"\nimport { customElement, property, state } from \"lit/decorators.js\"\n\nimport componentStyle from \"../common/styles/Component.css\"\nimport style from \"./Avatar.css\"\nimport { fsm, States } from \"../common/fsm.js\"\nimport { observe } from \"../common/decorators/observe.js\"\nimport \"../visually-hidden/VisuallyHidden.js\"\nimport \"../icon/Icon.js\"\n\nconst { transition } = fsm({\n initial: {\n \"src-set\": \"loading\",\n },\n loading: {\n load: \"loaded\",\n error: \"initial\",\n \"src-clear\": \"initial\",\n },\n loaded: {\n \"src-set\": \"loading\",\n \"src-clear\": \"initial\",\n },\n})\n\n/**\n * Avatar is used for showing a thumbnail representation of a single user or entity.\n * Default avatar illustration is displayed when no src is specified.\n *\n * @status ready\n * @category image\n *\n * @cssprop [--n-avatar-color=var(--n-color-status-highlight)] - Controls the color of the avatar fallback, using [color tokens](/tokens/#color).\n * @cssprop [--n-avatar-size=var(--n-size-icon-l)] - Controls the size of the avatar, using [icon sizing tokens](/tokens/#size).\n */\n\n@customElement(\"nord-avatar\")\nexport default class Avatar extends LitElement {\n static styles = [componentStyle, style]\n\n @state() private state: States<typeof transition> = \"initial\"\n\n /**\n * The size of the avatar.\n */\n @property({ reflect: true }) size: \"s\" | \"m\" | \"l\" | \"xl\" | \"xxl\" | \"xxxl\" = \"m\"\n\n /**\n * The URL of the avatar image uploaded by the user.\n */\n @property({ reflect: true }) src?: string\n\n /**\n * The name of the person or entity.\n */\n @property() name: string = \"\"\n\n /**\n * The fallback icon.\n */\n @property() icon: string = \"\"\n\n /**\n * The style variant of the avatar.\n */\n @property({ reflect: true }) variant: \"default\" | \"square\" = \"default\"\n\n render() {\n return html`\n <div class=\"n-avatar\">\n ${this.state !== \"initial\" ? this.renderImage() : nothing}\n ${this.state !== \"loaded\" ? this.renderFallback() : nothing}\n </div>\n `\n }\n\n @observe(\"src\")\n protected handleSrcChange() {\n const event = this.src ? \"src-set\" : \"src-clear\"\n this.state = transition(this.state, event)\n }\n\n protected renderImage() {\n return this.src\n ? html`\n <slot hidden></slot>\n <img\n class=\"n-${this.state}\"\n src=${this.src}\n @load=${this.handleLoad}\n @error=${this.handleError}\n alt=${this.name || \"\"}\n />\n `\n : nothing\n }\n\n protected renderFallback() {\n return html`\n <nord-visually-hidden>${this.name}</nord-visually-hidden>\n <div class=\"n-avatar-inner\" aria-hidden=\"true\">\n <slot></slot>\n </div>\n ${this.icon\n ? html`<nord-icon name=\"${this.icon}\"></nord-icon>`\n : html`\n <svg aria-hidden=\"true\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 27 27\">\n <rect fill=\"var(--_n-avatar-color)\" height=\"27\" rx=\"12\" width=\"27\" x=\"0\" y=\"0\"></rect>\n <g fill=\"#fff\" opacity=\".7\">\n <circle cx=\"13.5\" cy=\"30\" r=\"13\"></circle>\n <circle cx=\"13.5\" cy=\"11\" r=\"5\"></circle>\n </g>\n </svg>\n `}\n `\n }\n\n private handleLoad() {\n this.state = transition(this.state, \"load\")\n }\n\n private handleError() {\n this.state = transition(this.state, \"error\")\n }\n}\n\ndeclare global {\n interface HTMLElementTagNameMap {\n \"nord-avatar\": Avatar\n }\n}\n"],"names":["transition","fsm","initial","loading","load","error","loaded","Avatar","LitElement","constructor","this","state","size","name","icon","variant","render","html","renderImage","nothing","renderFallback","handleSrcChange","event","src","handleLoad","handleError","styles","componentStyle","style","__decorate","prototype","property","reflect","observe","customElement"],"mappings":"+7EAUMA,WAAEA,GAAeC,EAAI,CACzBC,QAAS,CACP,UAAW,WAEbC,QAAS,CACPC,KAAM,SACNC,MAAO,UACP,YAAa,WAEfC,OAAQ,CACN,UAAW,UACX,YAAa,aAgBjB,IAAqBC,EAArB,cAAoCC,EAApCC,kCAGmBC,KAAKC,MAA8B,UAKvBD,KAAIE,KAA4C,IAUjEF,KAAIG,KAAW,GAKfH,KAAII,KAAW,GAKEJ,KAAOK,QAAyB,SA2D9D,CAzDCC,SACE,OAAOC,CAAI,yBAEU,YAAfP,KAAKC,MAAsBD,KAAKQ,cAAgBC,KACjC,WAAfT,KAAKC,MAAqBD,KAAKU,iBAAmBD,SAGzD,CAGSE,kBACR,MAAMC,EAAQZ,KAAKa,IAAM,UAAY,YACrCb,KAAKC,MAAQX,EAAWU,KAAKC,MAAOW,EACrC,CAESJ,cACR,OAAOR,KAAKa,IACRN,CAAI,qCAGWP,KAAKC,eACVD,KAAKa,eACHb,KAAKc,uBACJd,KAAKe,qBACRf,KAAKG,MAAQ,OAGvBM,CACL,CAESC,iBACR,OAAOH,CAAI,yBACeP,KAAKG,gGAI3BH,KAAKI,KACHG,CAAI,oBAAoBP,KAAKI,qBAC7BG,CAAI,kSAUX,CAEOO,aACNd,KAAKC,MAAQX,EAAWU,KAAKC,MAAO,OACrC,CAEOc,cACNf,KAAKC,MAAQX,EAAWU,KAAKC,MAAO,QACrC,GArFMJ,EAAAmB,OAAS,CAACC,EAAgBC,GAExBC,EAAA,CAARlB,KAA4DJ,EAAAuB,UAAA,aAAA,GAKhCD,EAAA,CAA5BE,EAAS,CAAEC,SAAS,KAA2DzB,EAAAuB,UAAA,YAAA,GAKnDD,EAAA,CAA5BE,EAAS,CAAEC,SAAS,KAAoBzB,EAAAuB,UAAA,WAAA,GAK7BD,EAAA,CAAXE,KAA4BxB,EAAAuB,UAAA,YAAA,GAKjBD,EAAA,CAAXE,KAA4BxB,EAAAuB,UAAA,YAAA,GAKAD,EAAA,CAA5BE,EAAS,CAAEC,SAAS,KAAiDzB,EAAAuB,UAAA,eAAA,GAYtED,EAAA,CADCI,EAAQ,QAIR1B,EAAAuB,UAAA,kBAAA,MA3CkBvB,EAAMsB,EAAA,CAD1BK,EAAc,gBACM3B,SAAAA"}
|