@nysds/components 1.20.0-alpha-2 → 1.20.0-alpha-3
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 +64 -47
- package/dist/.vscode/vscode.html-custom-data.json +3 -3
- package/dist/custom-elements.json +64 -47
- package/dist/nysds.es.js +997 -956
- package/dist/nysds.es.js.map +1 -1
- package/dist/nysds.js +135 -728
- package/dist/nysds.js.map +1 -1
- package/dist/packages/nys-fileinput/src/nys-fileinput.d.ts +28 -0
- package/dist/packages/nys-globalheader/src/nys-globalheader.d.ts +8 -1
- package/dist/packages/nys-icon/src/icon-cache.d.ts +4 -11
- package/dist/packages/nys-icon/src/icon-library-registry.d.ts +16 -33
- package/dist/packages/nys-icon/src/index.d.ts +2 -2
- package/dist/packages/nys-unavheader/src/nys-unavheader.d.ts +4 -0
- package/package.json +6 -4
- package/packages/react/NysFileinput.d.ts +24 -2
- package/packages/react/NysFileinput.js +8 -1
- package/packages/react/NysGlobalHeader.d.ts +6 -1
- package/packages/react/nysds-jsx.d.ts +25 -3
- package/dist/nys-icon.library-KABSu7EO.js +0 -696
- package/dist/nys-icon.library-KABSu7EO.js.map +0 -1
- package/dist/nys-icon.library-KJQqs0XM.js +0 -696
- package/dist/nys-icon.library-KJQqs0XM.js.map +0 -1
package/custom-elements.json
CHANGED
|
@@ -6289,7 +6289,7 @@
|
|
|
6289
6289
|
"declarations": [
|
|
6290
6290
|
{
|
|
6291
6291
|
"kind": "class",
|
|
6292
|
-
"description": "A file input for uploading files with support for multiple files, drag-and-drop, and progress tracking.\nValidates file types via magic bytes (not just extension). Form-associated via ElementInternals.\n\nUse for document uploads, image uploads, or any file submission. Enable `dropzone` for drag-and-drop UI.",
|
|
6292
|
+
"description": "A file input for uploading files with support for multiple files, drag-and-drop, and progress tracking.\nValidates file types via magic bytes (not just extension). Form-associated via ElementInternals.\n\nUse for document uploads, image uploads, or any file submission. Enable `dropzone` for drag-and-drop UI.\n\nRead or write the current selection via the `files` (`File[]`) and `value` (`File | null`)\nproperties — useful for rehydrating state or binding from a framework form model.\nSetting them is silent (does not emit `nys-change`).",
|
|
6293
6293
|
"name": "NysFileinput",
|
|
6294
6294
|
"slots": [
|
|
6295
6295
|
{
|
|
@@ -6485,6 +6485,41 @@
|
|
|
6485
6485
|
"privacy": "private",
|
|
6486
6486
|
"default": "[]"
|
|
6487
6487
|
},
|
|
6488
|
+
{
|
|
6489
|
+
"kind": "field",
|
|
6490
|
+
"name": "files",
|
|
6491
|
+
"type": {
|
|
6492
|
+
"text": "File[]"
|
|
6493
|
+
},
|
|
6494
|
+
"description": "The currently selected files. Read to get the current selection; set to\nreplace it (e.g. rehydrating state after navigation, or binding from a\nframework form model). Property-only — a `File[]` cannot round-trip through\nan HTML attribute. Setting this is silent (does not emit `nys-change`),\nmatching native input behavior and avoiding feedback loops in two-way bindings."
|
|
6495
|
+
},
|
|
6496
|
+
{
|
|
6497
|
+
"kind": "field",
|
|
6498
|
+
"name": "value",
|
|
6499
|
+
"type": {
|
|
6500
|
+
"text": "File | null"
|
|
6501
|
+
},
|
|
6502
|
+
"description": "Single-file convenience accessor (parity with `nys-textinput`'s `value`).\nReads the first selected file (or `null`); setting replaces the selection."
|
|
6503
|
+
},
|
|
6504
|
+
{
|
|
6505
|
+
"kind": "method",
|
|
6506
|
+
"name": "setFiles",
|
|
6507
|
+
"privacy": "public",
|
|
6508
|
+
"return": {
|
|
6509
|
+
"type": {
|
|
6510
|
+
"text": "Promise<void>"
|
|
6511
|
+
}
|
|
6512
|
+
},
|
|
6513
|
+
"parameters": [
|
|
6514
|
+
{
|
|
6515
|
+
"name": "incoming",
|
|
6516
|
+
"type": {
|
|
6517
|
+
"text": "File[]"
|
|
6518
|
+
}
|
|
6519
|
+
}
|
|
6520
|
+
],
|
|
6521
|
+
"description": "Programmatically set the selection and await async validation/processing.\nSame as assigning `files`, but resolves once every file has finished its\nmagic-byte validation and read — use when you need to read `checkValidity()`\nor the settled selection immediately after."
|
|
6522
|
+
},
|
|
6488
6523
|
{
|
|
6489
6524
|
"kind": "field",
|
|
6490
6525
|
"name": "_dragActive",
|
|
@@ -6632,6 +6667,19 @@
|
|
|
6632
6667
|
}
|
|
6633
6668
|
]
|
|
6634
6669
|
},
|
|
6670
|
+
{
|
|
6671
|
+
"kind": "method",
|
|
6672
|
+
"name": "_handleBlur",
|
|
6673
|
+
"privacy": "private",
|
|
6674
|
+
"parameters": [
|
|
6675
|
+
{
|
|
6676
|
+
"name": "e",
|
|
6677
|
+
"type": {
|
|
6678
|
+
"text": "FocusEvent"
|
|
6679
|
+
}
|
|
6680
|
+
}
|
|
6681
|
+
]
|
|
6682
|
+
},
|
|
6635
6683
|
{
|
|
6636
6684
|
"kind": "method",
|
|
6637
6685
|
"name": "_dispatchChangeEvent",
|
|
@@ -6720,6 +6768,13 @@
|
|
|
6720
6768
|
}
|
|
6721
6769
|
],
|
|
6722
6770
|
"events": [
|
|
6771
|
+
{
|
|
6772
|
+
"name": "nys-blur",
|
|
6773
|
+
"type": {
|
|
6774
|
+
"text": "Event"
|
|
6775
|
+
},
|
|
6776
|
+
"description": "Fired when focus leaves the component. Triggers validation."
|
|
6777
|
+
},
|
|
6723
6778
|
{
|
|
6724
6779
|
"name": "nys-change",
|
|
6725
6780
|
"type": {
|
|
@@ -7295,6 +7350,10 @@
|
|
|
7295
7350
|
{
|
|
7296
7351
|
"description": "Navigation content (typically `<ul>` with `<li><a>` links). Auto-sanitized.",
|
|
7297
7352
|
"name": ""
|
|
7353
|
+
},
|
|
7354
|
+
{
|
|
7355
|
+
"description": "User-account controls (e.g. profile link, settings, log-out button) shown in the header.",
|
|
7356
|
+
"name": "user-actions"
|
|
7298
7357
|
}
|
|
7299
7358
|
],
|
|
7300
7359
|
"members": [
|
|
@@ -7335,7 +7394,7 @@
|
|
|
7335
7394
|
"text": "boolean"
|
|
7336
7395
|
},
|
|
7337
7396
|
"default": "false",
|
|
7338
|
-
"description": "
|
|
7397
|
+
"description": "Displays the NYS brand mark in the header. Off by default.\n\nEnable only for internal, state-employee (back-office) applications that omit\n`nys-unavheader`. Any resident-facing app — even one requiring login — should\nkeep `nys-unavheader` for trust and leave this off.",
|
|
7339
7398
|
"attribute": "nysLogo"
|
|
7340
7399
|
},
|
|
7341
7400
|
{
|
|
@@ -7463,7 +7522,7 @@
|
|
|
7463
7522
|
"text": "boolean"
|
|
7464
7523
|
},
|
|
7465
7524
|
"default": "false",
|
|
7466
|
-
"description": "
|
|
7525
|
+
"description": "Displays the NYS brand mark in the header. Off by default.\n\nEnable only for internal, state-employee (back-office) applications that omit\n`nys-unavheader`. Any resident-facing app — even one requiring login — should\nkeep `nys-unavheader` for trust and leave this off.",
|
|
7467
7526
|
"fieldName": "nysLogo",
|
|
7468
7527
|
"propName": "nyslogo"
|
|
7469
7528
|
}
|
|
@@ -7524,7 +7583,7 @@
|
|
|
7524
7583
|
}
|
|
7525
7584
|
}
|
|
7526
7585
|
],
|
|
7527
|
-
"description": "Clear one
|
|
7586
|
+
"description": "Clear one or all entries from the cache."
|
|
7528
7587
|
},
|
|
7529
7588
|
{
|
|
7530
7589
|
"kind": "function",
|
|
@@ -7543,24 +7602,6 @@
|
|
|
7543
7602
|
}
|
|
7544
7603
|
],
|
|
7545
7604
|
"description": "Fetch and parse an SVG from a URL. Returns a cloned SVGElement (safe for multiple consumers)."
|
|
7546
|
-
},
|
|
7547
|
-
{
|
|
7548
|
-
"kind": "function",
|
|
7549
|
-
"name": "parseIcon",
|
|
7550
|
-
"return": {
|
|
7551
|
-
"type": {
|
|
7552
|
-
"text": "SVGElement"
|
|
7553
|
-
}
|
|
7554
|
-
},
|
|
7555
|
-
"parameters": [
|
|
7556
|
-
{
|
|
7557
|
-
"name": "source",
|
|
7558
|
-
"type": {
|
|
7559
|
-
"text": "string"
|
|
7560
|
-
}
|
|
7561
|
-
}
|
|
7562
|
-
],
|
|
7563
|
-
"description": "Parse an inline SVG source string. Results are cached by source content,\nso repeated renders of the same icon sanitize/parse once. Returns a\ncloned SVGElement (safe for multiple consumers)."
|
|
7564
7605
|
}
|
|
7565
7606
|
],
|
|
7566
7607
|
"exports": [
|
|
@@ -7579,14 +7620,6 @@
|
|
|
7579
7620
|
"name": "fetchIcon",
|
|
7580
7621
|
"module": "packages/nys-icon/src/icon-cache.ts"
|
|
7581
7622
|
}
|
|
7582
|
-
},
|
|
7583
|
-
{
|
|
7584
|
-
"kind": "js",
|
|
7585
|
-
"name": "parseIcon",
|
|
7586
|
-
"declaration": {
|
|
7587
|
-
"name": "parseIcon",
|
|
7588
|
-
"module": "packages/nys-icon/src/icon-cache.ts"
|
|
7589
|
-
}
|
|
7590
7623
|
}
|
|
7591
7624
|
]
|
|
7592
7625
|
},
|
|
@@ -7634,7 +7667,7 @@
|
|
|
7634
7667
|
}
|
|
7635
7668
|
}
|
|
7636
7669
|
],
|
|
7637
|
-
"description": "Register or replace a named icon library. All watching icons using this library will redraw
|
|
7670
|
+
"description": "Register or replace a named icon library. All watching icons using this library will redraw.",
|
|
7638
7671
|
"examples": [
|
|
7639
7672
|
{
|
|
7640
7673
|
"title": "Register a Font Awesome library with a custom resolver:",
|
|
@@ -7774,14 +7807,6 @@
|
|
|
7774
7807
|
"module": "./icon-cache"
|
|
7775
7808
|
}
|
|
7776
7809
|
},
|
|
7777
|
-
{
|
|
7778
|
-
"kind": "js",
|
|
7779
|
-
"name": "getIconLibrary",
|
|
7780
|
-
"declaration": {
|
|
7781
|
-
"name": "getIconLibrary",
|
|
7782
|
-
"module": "./icon-library-registry"
|
|
7783
|
-
}
|
|
7784
|
-
},
|
|
7785
7810
|
{
|
|
7786
7811
|
"kind": "js",
|
|
7787
7812
|
"name": "IconLibrary",
|
|
@@ -7790,14 +7815,6 @@
|
|
|
7790
7815
|
"module": "./icon-library-registry"
|
|
7791
7816
|
}
|
|
7792
7817
|
},
|
|
7793
|
-
{
|
|
7794
|
-
"kind": "js",
|
|
7795
|
-
"name": "IconResolution",
|
|
7796
|
-
"declaration": {
|
|
7797
|
-
"name": "IconResolution",
|
|
7798
|
-
"module": "./icon-library-registry"
|
|
7799
|
-
}
|
|
7800
|
-
},
|
|
7801
7818
|
{
|
|
7802
7819
|
"kind": "js",
|
|
7803
7820
|
"name": "registerIconLibrary",
|
|
@@ -767,7 +767,7 @@
|
|
|
767
767
|
},
|
|
768
768
|
{
|
|
769
769
|
"name": "nys-fileinput",
|
|
770
|
-
"description": "File input with drag-and-drop, validation, and progress tracking.\n---\n\n\n### **Events:**\n - **nys-change** - Fired when files are added or removed. Detail: `{id, files}`.\n\n### **Slots:**\n - **description** - Custom HTML description content.",
|
|
770
|
+
"description": "File input with drag-and-drop, validation, and progress tracking.\n---\n\n\n### **Events:**\n - **nys-blur** - Fired when focus leaves the component. Triggers validation.\n- **nys-change** - Fired when files are added or removed. Detail: `{id, files}`.\n\n### **Methods:**\n - **setFiles(incoming: _File[]_): _Promise<void>_** - Programmatically set the selection and await async validation/processing.\nSame as assigning `files`, but resolves once every file has finished its\nmagic-byte validation and read — use when you need to read `checkValidity()`\nor the settled selection immediately after.\n\n### **Slots:**\n - **description** - Custom HTML description content.",
|
|
771
771
|
"attributes": [
|
|
772
772
|
{
|
|
773
773
|
"name": "id",
|
|
@@ -905,7 +905,7 @@
|
|
|
905
905
|
},
|
|
906
906
|
{
|
|
907
907
|
"name": "nys-globalheader",
|
|
908
|
-
"description": "Agency header with navigation, mobile menu, and active link highlighting.\n---\n\n\n### **Slots:**\n - _default_ - Navigation content (typically `<ul>` with `<li><a>` links). Auto-sanitized.",
|
|
908
|
+
"description": "Agency header with navigation, mobile menu, and active link highlighting.\n---\n\n\n### **Slots:**\n - _default_ - Navigation content (typically `<ul>` with `<li><a>` links). Auto-sanitized.\n- **user-actions** - User-account controls (e.g. profile link, settings, log-out button) shown in the header.",
|
|
909
909
|
"attributes": [
|
|
910
910
|
{
|
|
911
911
|
"name": "appName",
|
|
@@ -924,7 +924,7 @@
|
|
|
924
924
|
},
|
|
925
925
|
{
|
|
926
926
|
"name": "nysLogo",
|
|
927
|
-
"description": "
|
|
927
|
+
"description": "Displays the NYS brand mark in the header. Off by default.\n\nEnable only for internal, state-employee (back-office) applications that omit\n`nys-unavheader`. Any resident-facing app — even one requiring login — should\nkeep `nys-unavheader` for trust and leave this off.",
|
|
928
928
|
"values": []
|
|
929
929
|
}
|
|
930
930
|
],
|
|
@@ -6289,7 +6289,7 @@
|
|
|
6289
6289
|
"declarations": [
|
|
6290
6290
|
{
|
|
6291
6291
|
"kind": "class",
|
|
6292
|
-
"description": "A file input for uploading files with support for multiple files, drag-and-drop, and progress tracking.\nValidates file types via magic bytes (not just extension). Form-associated via ElementInternals.\n\nUse for document uploads, image uploads, or any file submission. Enable `dropzone` for drag-and-drop UI.",
|
|
6292
|
+
"description": "A file input for uploading files with support for multiple files, drag-and-drop, and progress tracking.\nValidates file types via magic bytes (not just extension). Form-associated via ElementInternals.\n\nUse for document uploads, image uploads, or any file submission. Enable `dropzone` for drag-and-drop UI.\n\nRead or write the current selection via the `files` (`File[]`) and `value` (`File | null`)\nproperties — useful for rehydrating state or binding from a framework form model.\nSetting them is silent (does not emit `nys-change`).",
|
|
6293
6293
|
"name": "NysFileinput",
|
|
6294
6294
|
"slots": [
|
|
6295
6295
|
{
|
|
@@ -6485,6 +6485,41 @@
|
|
|
6485
6485
|
"privacy": "private",
|
|
6486
6486
|
"default": "[]"
|
|
6487
6487
|
},
|
|
6488
|
+
{
|
|
6489
|
+
"kind": "field",
|
|
6490
|
+
"name": "files",
|
|
6491
|
+
"type": {
|
|
6492
|
+
"text": "File[]"
|
|
6493
|
+
},
|
|
6494
|
+
"description": "The currently selected files. Read to get the current selection; set to\nreplace it (e.g. rehydrating state after navigation, or binding from a\nframework form model). Property-only — a `File[]` cannot round-trip through\nan HTML attribute. Setting this is silent (does not emit `nys-change`),\nmatching native input behavior and avoiding feedback loops in two-way bindings."
|
|
6495
|
+
},
|
|
6496
|
+
{
|
|
6497
|
+
"kind": "field",
|
|
6498
|
+
"name": "value",
|
|
6499
|
+
"type": {
|
|
6500
|
+
"text": "File | null"
|
|
6501
|
+
},
|
|
6502
|
+
"description": "Single-file convenience accessor (parity with `nys-textinput`'s `value`).\nReads the first selected file (or `null`); setting replaces the selection."
|
|
6503
|
+
},
|
|
6504
|
+
{
|
|
6505
|
+
"kind": "method",
|
|
6506
|
+
"name": "setFiles",
|
|
6507
|
+
"privacy": "public",
|
|
6508
|
+
"return": {
|
|
6509
|
+
"type": {
|
|
6510
|
+
"text": "Promise<void>"
|
|
6511
|
+
}
|
|
6512
|
+
},
|
|
6513
|
+
"parameters": [
|
|
6514
|
+
{
|
|
6515
|
+
"name": "incoming",
|
|
6516
|
+
"type": {
|
|
6517
|
+
"text": "File[]"
|
|
6518
|
+
}
|
|
6519
|
+
}
|
|
6520
|
+
],
|
|
6521
|
+
"description": "Programmatically set the selection and await async validation/processing.\nSame as assigning `files`, but resolves once every file has finished its\nmagic-byte validation and read — use when you need to read `checkValidity()`\nor the settled selection immediately after."
|
|
6522
|
+
},
|
|
6488
6523
|
{
|
|
6489
6524
|
"kind": "field",
|
|
6490
6525
|
"name": "_dragActive",
|
|
@@ -6632,6 +6667,19 @@
|
|
|
6632
6667
|
}
|
|
6633
6668
|
]
|
|
6634
6669
|
},
|
|
6670
|
+
{
|
|
6671
|
+
"kind": "method",
|
|
6672
|
+
"name": "_handleBlur",
|
|
6673
|
+
"privacy": "private",
|
|
6674
|
+
"parameters": [
|
|
6675
|
+
{
|
|
6676
|
+
"name": "e",
|
|
6677
|
+
"type": {
|
|
6678
|
+
"text": "FocusEvent"
|
|
6679
|
+
}
|
|
6680
|
+
}
|
|
6681
|
+
]
|
|
6682
|
+
},
|
|
6635
6683
|
{
|
|
6636
6684
|
"kind": "method",
|
|
6637
6685
|
"name": "_dispatchChangeEvent",
|
|
@@ -6720,6 +6768,13 @@
|
|
|
6720
6768
|
}
|
|
6721
6769
|
],
|
|
6722
6770
|
"events": [
|
|
6771
|
+
{
|
|
6772
|
+
"name": "nys-blur",
|
|
6773
|
+
"type": {
|
|
6774
|
+
"text": "Event"
|
|
6775
|
+
},
|
|
6776
|
+
"description": "Fired when focus leaves the component. Triggers validation."
|
|
6777
|
+
},
|
|
6723
6778
|
{
|
|
6724
6779
|
"name": "nys-change",
|
|
6725
6780
|
"type": {
|
|
@@ -7295,6 +7350,10 @@
|
|
|
7295
7350
|
{
|
|
7296
7351
|
"description": "Navigation content (typically `<ul>` with `<li><a>` links). Auto-sanitized.",
|
|
7297
7352
|
"name": ""
|
|
7353
|
+
},
|
|
7354
|
+
{
|
|
7355
|
+
"description": "User-account controls (e.g. profile link, settings, log-out button) shown in the header.",
|
|
7356
|
+
"name": "user-actions"
|
|
7298
7357
|
}
|
|
7299
7358
|
],
|
|
7300
7359
|
"members": [
|
|
@@ -7335,7 +7394,7 @@
|
|
|
7335
7394
|
"text": "boolean"
|
|
7336
7395
|
},
|
|
7337
7396
|
"default": "false",
|
|
7338
|
-
"description": "
|
|
7397
|
+
"description": "Displays the NYS brand mark in the header. Off by default.\n\nEnable only for internal, state-employee (back-office) applications that omit\n`nys-unavheader`. Any resident-facing app — even one requiring login — should\nkeep `nys-unavheader` for trust and leave this off.",
|
|
7339
7398
|
"attribute": "nysLogo"
|
|
7340
7399
|
},
|
|
7341
7400
|
{
|
|
@@ -7463,7 +7522,7 @@
|
|
|
7463
7522
|
"text": "boolean"
|
|
7464
7523
|
},
|
|
7465
7524
|
"default": "false",
|
|
7466
|
-
"description": "
|
|
7525
|
+
"description": "Displays the NYS brand mark in the header. Off by default.\n\nEnable only for internal, state-employee (back-office) applications that omit\n`nys-unavheader`. Any resident-facing app — even one requiring login — should\nkeep `nys-unavheader` for trust and leave this off.",
|
|
7467
7526
|
"fieldName": "nysLogo",
|
|
7468
7527
|
"propName": "nyslogo"
|
|
7469
7528
|
}
|
|
@@ -7524,7 +7583,7 @@
|
|
|
7524
7583
|
}
|
|
7525
7584
|
}
|
|
7526
7585
|
],
|
|
7527
|
-
"description": "Clear one
|
|
7586
|
+
"description": "Clear one or all entries from the cache."
|
|
7528
7587
|
},
|
|
7529
7588
|
{
|
|
7530
7589
|
"kind": "function",
|
|
@@ -7543,24 +7602,6 @@
|
|
|
7543
7602
|
}
|
|
7544
7603
|
],
|
|
7545
7604
|
"description": "Fetch and parse an SVG from a URL. Returns a cloned SVGElement (safe for multiple consumers)."
|
|
7546
|
-
},
|
|
7547
|
-
{
|
|
7548
|
-
"kind": "function",
|
|
7549
|
-
"name": "parseIcon",
|
|
7550
|
-
"return": {
|
|
7551
|
-
"type": {
|
|
7552
|
-
"text": "SVGElement"
|
|
7553
|
-
}
|
|
7554
|
-
},
|
|
7555
|
-
"parameters": [
|
|
7556
|
-
{
|
|
7557
|
-
"name": "source",
|
|
7558
|
-
"type": {
|
|
7559
|
-
"text": "string"
|
|
7560
|
-
}
|
|
7561
|
-
}
|
|
7562
|
-
],
|
|
7563
|
-
"description": "Parse an inline SVG source string. Results are cached by source content,\nso repeated renders of the same icon sanitize/parse once. Returns a\ncloned SVGElement (safe for multiple consumers)."
|
|
7564
7605
|
}
|
|
7565
7606
|
],
|
|
7566
7607
|
"exports": [
|
|
@@ -7579,14 +7620,6 @@
|
|
|
7579
7620
|
"name": "fetchIcon",
|
|
7580
7621
|
"module": "packages/nys-icon/src/icon-cache.ts"
|
|
7581
7622
|
}
|
|
7582
|
-
},
|
|
7583
|
-
{
|
|
7584
|
-
"kind": "js",
|
|
7585
|
-
"name": "parseIcon",
|
|
7586
|
-
"declaration": {
|
|
7587
|
-
"name": "parseIcon",
|
|
7588
|
-
"module": "packages/nys-icon/src/icon-cache.ts"
|
|
7589
|
-
}
|
|
7590
7623
|
}
|
|
7591
7624
|
]
|
|
7592
7625
|
},
|
|
@@ -7634,7 +7667,7 @@
|
|
|
7634
7667
|
}
|
|
7635
7668
|
}
|
|
7636
7669
|
],
|
|
7637
|
-
"description": "Register or replace a named icon library. All watching icons using this library will redraw
|
|
7670
|
+
"description": "Register or replace a named icon library. All watching icons using this library will redraw.",
|
|
7638
7671
|
"examples": [
|
|
7639
7672
|
{
|
|
7640
7673
|
"title": "Register a Font Awesome library with a custom resolver:",
|
|
@@ -7774,14 +7807,6 @@
|
|
|
7774
7807
|
"module": "./icon-cache"
|
|
7775
7808
|
}
|
|
7776
7809
|
},
|
|
7777
|
-
{
|
|
7778
|
-
"kind": "js",
|
|
7779
|
-
"name": "getIconLibrary",
|
|
7780
|
-
"declaration": {
|
|
7781
|
-
"name": "getIconLibrary",
|
|
7782
|
-
"module": "./icon-library-registry"
|
|
7783
|
-
}
|
|
7784
|
-
},
|
|
7785
7810
|
{
|
|
7786
7811
|
"kind": "js",
|
|
7787
7812
|
"name": "IconLibrary",
|
|
@@ -7790,14 +7815,6 @@
|
|
|
7790
7815
|
"module": "./icon-library-registry"
|
|
7791
7816
|
}
|
|
7792
7817
|
},
|
|
7793
|
-
{
|
|
7794
|
-
"kind": "js",
|
|
7795
|
-
"name": "IconResolution",
|
|
7796
|
-
"declaration": {
|
|
7797
|
-
"name": "IconResolution",
|
|
7798
|
-
"module": "./icon-library-registry"
|
|
7799
|
-
}
|
|
7800
|
-
},
|
|
7801
7818
|
{
|
|
7802
7819
|
"kind": "js",
|
|
7803
7820
|
"name": "registerIconLibrary",
|