@ni/nimble-components 32.6.0 → 32.7.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/dist/all-components-bundle.js +145 -11
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +3705 -3695
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/icons/all-icons.d.ts +7 -0
- package/dist/esm/icons/all-icons.js +7 -0
- package/dist/esm/icons/all-icons.js.map +1 -1
- package/dist/esm/icons/lightbulb.d.ts +13 -0
- package/dist/esm/icons/lightbulb.js +15 -0
- package/dist/esm/icons/lightbulb.js.map +1 -0
- package/dist/esm/icons/microphone.d.ts +13 -0
- package/dist/esm/icons/microphone.js +15 -0
- package/dist/esm/icons/microphone.js.map +1 -0
- package/dist/esm/icons/mountain-sun.d.ts +13 -0
- package/dist/esm/icons/mountain-sun.js +15 -0
- package/dist/esm/icons/mountain-sun.js.map +1 -0
- package/dist/esm/icons/paper-plane.d.ts +13 -0
- package/dist/esm/icons/paper-plane.js +15 -0
- package/dist/esm/icons/paper-plane.js.map +1 -0
- package/dist/esm/icons/paperclip.d.ts +13 -0
- package/dist/esm/icons/paperclip.js +15 -0
- package/dist/esm/icons/paperclip.js.map +1 -0
- package/dist/esm/icons/rectangle-lines.d.ts +13 -0
- package/dist/esm/icons/rectangle-lines.js +15 -0
- package/dist/esm/icons/rectangle-lines.js.map +1 -0
- package/dist/esm/icons/star-8-point.d.ts +13 -0
- package/dist/esm/icons/star-8-point.js +15 -0
- package/dist/esm/icons/star-8-point.js.map +1 -0
- package/package.json +4 -4
|
@@ -8602,18 +8602,20 @@
|
|
|
8602
8602
|
* @internal
|
|
8603
8603
|
*/
|
|
8604
8604
|
clickHandler(e) {
|
|
8605
|
-
|
|
8605
|
+
const captured = e.target.closest(`option,[role=option]`);
|
|
8606
|
+
if (this.disabled || (captured === null || captured === void 0 ? void 0 : captured.disabled)) {
|
|
8606
8607
|
return;
|
|
8607
8608
|
}
|
|
8608
8609
|
if (this.open) {
|
|
8609
|
-
|
|
8610
|
-
if (!captured || captured.disabled) {
|
|
8610
|
+
if (e.composedPath()[0] === this.control) {
|
|
8611
8611
|
return;
|
|
8612
8612
|
}
|
|
8613
|
-
|
|
8614
|
-
|
|
8615
|
-
|
|
8616
|
-
|
|
8613
|
+
if (captured) {
|
|
8614
|
+
this.selectedOptions = [captured];
|
|
8615
|
+
this.control.value = captured.text;
|
|
8616
|
+
this.clearSelectionRange();
|
|
8617
|
+
this.updateValue(true);
|
|
8618
|
+
}
|
|
8617
8619
|
}
|
|
8618
8620
|
this.open = !this.open;
|
|
8619
8621
|
if (this.open) {
|
|
@@ -9442,7 +9444,12 @@
|
|
|
9442
9444
|
* @internal
|
|
9443
9445
|
*/
|
|
9444
9446
|
handleChange() {
|
|
9445
|
-
|
|
9447
|
+
try {
|
|
9448
|
+
this.node.store.set(this.token, this.observer.observe(this.node.target, defaultExecutionContext));
|
|
9449
|
+
}
|
|
9450
|
+
catch (e) {
|
|
9451
|
+
console.error(e);
|
|
9452
|
+
}
|
|
9446
9453
|
}
|
|
9447
9454
|
}
|
|
9448
9455
|
/**
|
|
@@ -9464,6 +9471,7 @@
|
|
|
9464
9471
|
}
|
|
9465
9472
|
delete(token) {
|
|
9466
9473
|
this.values.delete(token);
|
|
9474
|
+
Observable.getNotifier(this).notify(token.id);
|
|
9467
9475
|
}
|
|
9468
9476
|
all() {
|
|
9469
9477
|
return this.values.entries();
|
|
@@ -9689,6 +9697,9 @@
|
|
|
9689
9697
|
const parent = childToParent.get(this);
|
|
9690
9698
|
parent.removeChild(this);
|
|
9691
9699
|
}
|
|
9700
|
+
for (const token of this.bindingObservers.keys()) {
|
|
9701
|
+
this.tearDownBindingObserver(token);
|
|
9702
|
+
}
|
|
9692
9703
|
}
|
|
9693
9704
|
/**
|
|
9694
9705
|
* Appends a child to a parent DesignTokenNode.
|
|
@@ -9706,6 +9717,8 @@
|
|
|
9706
9717
|
// How can we not notify *every* subscriber?
|
|
9707
9718
|
for (const [token, value] of this.store.all()) {
|
|
9708
9719
|
child.hydrate(token, this.bindingObservers.has(token) ? this.getRaw(token) : value);
|
|
9720
|
+
// Need to stop reflecting any tokens that can now be inherited
|
|
9721
|
+
child.updateCSSTokenReflection(child.store, token);
|
|
9709
9722
|
}
|
|
9710
9723
|
}
|
|
9711
9724
|
/**
|
|
@@ -9718,7 +9731,16 @@
|
|
|
9718
9731
|
this.children.splice(childIndex, 1);
|
|
9719
9732
|
}
|
|
9720
9733
|
Observable.getNotifier(this.store).unsubscribe(child);
|
|
9721
|
-
|
|
9734
|
+
if (child.parent !== this) {
|
|
9735
|
+
return false;
|
|
9736
|
+
}
|
|
9737
|
+
const deleted = childToParent.delete(child);
|
|
9738
|
+
for (const [token] of this.store.all()) {
|
|
9739
|
+
child.hydrate(token, child.getRaw(token));
|
|
9740
|
+
// Need to start reflecting any assigned values that were previously inherited
|
|
9741
|
+
child.updateCSSTokenReflection(child.store, token);
|
|
9742
|
+
}
|
|
9743
|
+
return deleted;
|
|
9722
9744
|
}
|
|
9723
9745
|
/**
|
|
9724
9746
|
* Tests whether a provided node is contained by
|
|
@@ -18399,7 +18421,7 @@
|
|
|
18399
18421
|
};
|
|
18400
18422
|
const floppyDiskPen16X16 = {
|
|
18401
18423
|
name: 'floppy_disk_pen_16_x_16',
|
|
18402
|
-
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.
|
|
18424
|
+
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.803 11H7V9H5v2H4V8h6v.617l1.469-1.471q.227-.224.514-.347L12 3.546c0-.33-.215-.546-.545-.546H2.583A.585.585 0 0 0 2 3.598V10.5l1.5 1.497L7.372 12zM3 7V4h8v3zm11.166 1.935L13.09 7.859a.64.64 0 0 0-.908 0l-3.388 3.393-1.503 3.483 3.487-1.5 3.388-3.392a.64.64 0 0 0 0-.908m-5.683 4.803-.198-.199.916-2.116.34 1.06 1.058.35z" class="cls-1"/></svg>`,
|
|
18403
18425
|
};
|
|
18404
18426
|
const floppyDiskStarArrowRight16X16 = {
|
|
18405
18427
|
name: 'floppy_disk_star_arrow_right_16_x_16',
|
|
@@ -18497,6 +18519,10 @@
|
|
|
18497
18519
|
name: 'layer_group_16_x_16',
|
|
18498
18520
|
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m3.555 9.546.89-.445 5.333 2.667 1.778-.89.889.449v1.33L9.778 13.99l-6.223-3.11Zm0-6.222L6.222 1.99l6.223 3.112v1.333L9.778 7.768l-6.223-3.11Zm0 3.11.89-.444 5.333 2.667 1.778-.89.889.448v1.33L9.778 10.88 3.555 7.768Z" class="cls-1"/></svg>`,
|
|
18499
18521
|
};
|
|
18522
|
+
const lightbulb16X16 = {
|
|
18523
|
+
name: 'lightbulb_16_x_16',
|
|
18524
|
+
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 5.53C12 3.584 10.206 2 8 2S4 3.583 4 5.53c0 .736.256 1.44.74 2.04.801.99 1.285 2.456 1.555 3.427h3.41c.27-.97.754-2.437 1.556-3.428.483-.598.739-1.303.739-2.038M9.138 14H6.862l-.569-1.001v-.3l.285-.15-.285-.15v-.401h3.414v.4l-.285.15.285.15V13z" class="cls-1"/></svg>`,
|
|
18525
|
+
};
|
|
18500
18526
|
const lightningBolt16X16 = {
|
|
18501
18527
|
name: 'lightning_bolt_16_x_16',
|
|
18502
18528
|
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4.732 7.953 6.909 2h3.636L8.364 7.013h2.909L4.727 14l2.21-6.049Z" class="cls-1"/></svg>`,
|
|
@@ -18533,6 +18559,10 @@
|
|
|
18533
18559
|
name: 'markdown_16_x_16',
|
|
18534
18560
|
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M14.25 3H1.75a.74.74 0 0 0-.75.73v8.54a.74.74 0 0 0 .75.73h12.5a.74.74 0 0 0 .75-.73V3.73a.74.74 0 0 0-.75-.73m-6.285 7.059h-.991V7.773L5.982 9.35l-.99-1.577v2.286H4V5.934h.91L5.982 7.51l1.073-1.576h.91Zm2.459.007L8.848 7.945h1.1V5.934h.99v2.01H12Z" class="cls-1"/></svg>`,
|
|
18535
18561
|
};
|
|
18562
|
+
const microphone16X16 = {
|
|
18563
|
+
name: 'microphone_16_x_16',
|
|
18564
|
+
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6 8V4a2 2 0 1 1 4 0v4a2 2 0 0 1-4 0m6 0v-.5a.5.5 0 1 0-1 0V8a3 3 0 1 1-6 0v-.5a.5.5 0 1 0-1 0V8c0 1.859 1.28 3.411 3 3.858V14h2v-2.142c1.72-.447 3-2 3-3.858" class="cls-1"/><path d="M6 8V4a2 2 0 1 1 4 0v4a2 2 0 0 1-4 0m6 0v-.5a.5.5 0 1 0-1 0V8a3 3 0 1 1-6 0v-.5a.5.5 0 1 0-1 0V8c0 1.859 1.28 3.411 3 3.858V14h2v-2.142c1.72-.447 3-2 3-3.858" class="cls-1"/></svg>`,
|
|
18565
|
+
};
|
|
18536
18566
|
const minus16X16 = {
|
|
18537
18567
|
name: 'minus_16_x_16',
|
|
18538
18568
|
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4 7h8v2H4z" class="cls-1"/></svg>`,
|
|
@@ -18545,6 +18575,10 @@
|
|
|
18545
18575
|
name: 'mobile_16_x_16',
|
|
18546
18576
|
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M10.462 2.077H4.538A.54.54 0 0 0 4 2.615v10.77a.54.54 0 0 0 .538.538h5.924a.54.54 0 0 0 .538-.538V2.615a.54.54 0 0 0-.538-.538M10 12H5V3h5Z" class="cls-1"/></svg>`,
|
|
18547
18577
|
};
|
|
18578
|
+
const mountainSun16X16 = {
|
|
18579
|
+
name: 'mountain_sun_16_x_16',
|
|
18580
|
+
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m13.457 10.097-1.468-3.011-1.195-1.026-.677.48-2.343-3.556L4.688 8.14l-1.204-.678-1.468 1.543L1 13h14zm-10.478-.2-.939 1.047.372-1.652.975-.993 2.722 3.04zm5.924.764L7.181 9.335l.17-1.958-2.192.896L7.605 4.19 9.4 7.06l-.11.943 1.197-1.038 2.228 4.345zM4.5 4.487a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0" class="cls-1"/></svg>`,
|
|
18581
|
+
};
|
|
18548
18582
|
const ni16X16 = {
|
|
18549
18583
|
name: 'ni_16_x_16',
|
|
18550
18584
|
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.172 4c1.675 0 3 1.354 3 3.103V13h-3V7h-3V4zm-3 9h-3V7h3zm10.656-9v9c-1.681 0-3-1.378-3-3V4z" class="cls-1"/></svg>`,
|
|
@@ -18565,6 +18599,14 @@
|
|
|
18565
18599
|
name: 'outward_squares_three_16_x_16',
|
|
18566
18600
|
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M9 9H7V7h2zm-6 4h4V9H3zM3 3v4h2V5h6v6H9v2h4V3zm7 3H9v1h1z" class="cls-1"/></svg>`,
|
|
18567
18601
|
};
|
|
18602
|
+
const paperPlane16X16 = {
|
|
18603
|
+
name: 'paper_plane_16_x_16',
|
|
18604
|
+
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m1 12.5 2-4 6-1-6-1-2-4 14 5z" class="cls-1"/></svg>`,
|
|
18605
|
+
};
|
|
18606
|
+
const paperclip16X16 = {
|
|
18607
|
+
name: 'paperclip_16_x_16',
|
|
18608
|
+
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8.5 14C6.406 14 5 12.393 5 10V5c0-1.822.981-3 2.5-3S10 3.178 10 5v3.98c0 1.328-.505 2-1.5 2s-1.5-.672-1.5-2V6h1v2.98c0 1 .266 1 .5 1s.5 0 .5-1V5c0-.602-.146-2-1.5-2S6 4.398 6 5v5c0 1.384.654 3 2.5 3s2.5-1.616 2.5-3V6h1v4c0 2.393-1.406 4-3.5 4"/></svg>`,
|
|
18609
|
+
};
|
|
18568
18610
|
const paste16X16 = {
|
|
18569
18611
|
name: 'paste_16_x_16',
|
|
18570
18612
|
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M9 5V3H3v6h2v1H2V2h8v3ZM6 6v8h8V6Z" class="cls-1"/></svg>`,
|
|
@@ -18575,7 +18617,7 @@
|
|
|
18575
18617
|
};
|
|
18576
18618
|
const pencil16X16 = {
|
|
18577
18619
|
name: 'pencil_16_x_16',
|
|
18578
|
-
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="
|
|
18620
|
+
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M10.118 2.793 4.84 8.076 2.5 13.5l5.43-2.335 5.278-5.284a1 1 0 0 0-.001-1.414l-1.675-1.674a1 1 0 0 0-1.414 0m-5.76 9.154-.31-.309 1.427-3.296.53 1.652 1.648.543z" class="cls-1"/></svg>`,
|
|
18579
18621
|
};
|
|
18580
18622
|
const play = {
|
|
18581
18623
|
name: 'play',
|
|
@@ -18593,6 +18635,10 @@
|
|
|
18593
18635
|
name: 'rectangle_check_lines_16_x_16',
|
|
18594
18636
|
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3 2v12h10V2zm9 11H4V3h8z" class="cls-2"/><path d="M5 9h6v1H5zM5 11h3v1H5z" class="cls-2"/><path d="M11 4.643 7.591 8 6 6.434l.682-.672.937.923L10.347 4z" class="cls-1"/></svg>`,
|
|
18595
18637
|
};
|
|
18638
|
+
const rectangleLines16X16 = {
|
|
18639
|
+
name: 'rectangle_lines_16_x_16',
|
|
18640
|
+
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3 2v11h10V2zm6 7H5V8h4zm2-2H5V6h6zm0-2H5V4h6z" class="cls-1"/></svg>`,
|
|
18641
|
+
};
|
|
18596
18642
|
const runningArrow16X16 = {
|
|
18597
18643
|
name: 'running_arrow_16_x_16',
|
|
18598
18644
|
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m13.45 7.985-7.602 4.013L7.75 8 5.848 3.987zM3.945 2.997 2.05 2 4.9 8l-2.85 6 1.902-1.005L6.325 8z" class="cls-1"/></svg>`,
|
|
@@ -18657,6 +18703,10 @@
|
|
|
18657
18703
|
name: 'square_x_16_x_16',
|
|
18658
18704
|
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3 3v10h10V3zm8 7.01-.99.99L8 8.99 5.99 11 5 10.01 7.01 8 5 5.99 5.99 5 8 7.01 10.01 5l.99.99L8.99 8z" class="cls-1"/></svg>`,
|
|
18659
18705
|
};
|
|
18706
|
+
const star8Point16X16 = {
|
|
18707
|
+
name: 'star_8_point_16_x_16',
|
|
18708
|
+
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M10.756 6.872 15 8.002 10.754 9.13l1.722 3.335-3.31-1.74L8.046 15l-1.118-4.276-3.312 1.736 1.727-3.332L1 7.996 5.343 6.87 3.621 3.535l3.308 1.74L8.052 1l1.12 4.276 3.31-1.734z" class="cls-1"/></svg>`,
|
|
18709
|
+
};
|
|
18660
18710
|
const stopSquare16X16 = {
|
|
18661
18711
|
name: 'stop_square_16_x_16',
|
|
18662
18712
|
data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3 3h10v10H3z" class="cls-1"/></svg>`,
|
|
@@ -23859,6 +23909,18 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
23859
23909
|
}
|
|
23860
23910
|
registerIcon('icon-layer-group', IconLayerGroup);
|
|
23861
23911
|
|
|
23912
|
+
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
23913
|
+
// See generation source in nimble-components/build/generate-icons
|
|
23914
|
+
/**
|
|
23915
|
+
* The icon component for the 'lightbulb' icon
|
|
23916
|
+
*/
|
|
23917
|
+
class IconLightbulb extends Icon {
|
|
23918
|
+
constructor() {
|
|
23919
|
+
super(lightbulb16X16);
|
|
23920
|
+
}
|
|
23921
|
+
}
|
|
23922
|
+
registerIcon('icon-lightbulb', IconLightbulb);
|
|
23923
|
+
|
|
23862
23924
|
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
23863
23925
|
// See generation source in nimble-components/build/generate-icons
|
|
23864
23926
|
/**
|
|
@@ -23969,6 +24031,18 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
23969
24031
|
}
|
|
23970
24032
|
registerIcon('icon-markdown', IconMarkdown);
|
|
23971
24033
|
|
|
24034
|
+
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
24035
|
+
// See generation source in nimble-components/build/generate-icons
|
|
24036
|
+
/**
|
|
24037
|
+
* The icon component for the 'microphone' icon
|
|
24038
|
+
*/
|
|
24039
|
+
class IconMicrophone extends Icon {
|
|
24040
|
+
constructor() {
|
|
24041
|
+
super(microphone16X16);
|
|
24042
|
+
}
|
|
24043
|
+
}
|
|
24044
|
+
registerIcon('icon-microphone', IconMicrophone);
|
|
24045
|
+
|
|
23972
24046
|
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
23973
24047
|
// See generation source in nimble-components/build/generate-icons
|
|
23974
24048
|
/**
|
|
@@ -24006,6 +24080,18 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
24006
24080
|
}
|
|
24007
24081
|
registerIcon('icon-mobile', IconMobile);
|
|
24008
24082
|
|
|
24083
|
+
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
24084
|
+
// See generation source in nimble-components/build/generate-icons
|
|
24085
|
+
/**
|
|
24086
|
+
* The icon component for the 'mountainSun' icon
|
|
24087
|
+
*/
|
|
24088
|
+
class IconMountainSun extends Icon {
|
|
24089
|
+
constructor() {
|
|
24090
|
+
super(mountainSun16X16);
|
|
24091
|
+
}
|
|
24092
|
+
}
|
|
24093
|
+
registerIcon('icon-mountain-sun', IconMountainSun);
|
|
24094
|
+
|
|
24009
24095
|
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
24010
24096
|
// See generation source in nimble-components/build/generate-icons
|
|
24011
24097
|
/**
|
|
@@ -24067,6 +24153,30 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
24067
24153
|
}
|
|
24068
24154
|
registerIcon('icon-outward-squares-three', IconOutwardSquaresThree);
|
|
24069
24155
|
|
|
24156
|
+
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
24157
|
+
// See generation source in nimble-components/build/generate-icons
|
|
24158
|
+
/**
|
|
24159
|
+
* The icon component for the 'paperPlane' icon
|
|
24160
|
+
*/
|
|
24161
|
+
class IconPaperPlane extends Icon {
|
|
24162
|
+
constructor() {
|
|
24163
|
+
super(paperPlane16X16);
|
|
24164
|
+
}
|
|
24165
|
+
}
|
|
24166
|
+
registerIcon('icon-paper-plane', IconPaperPlane);
|
|
24167
|
+
|
|
24168
|
+
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
24169
|
+
// See generation source in nimble-components/build/generate-icons
|
|
24170
|
+
/**
|
|
24171
|
+
* The icon component for the 'paperclip' icon
|
|
24172
|
+
*/
|
|
24173
|
+
class IconPaperclip extends Icon {
|
|
24174
|
+
constructor() {
|
|
24175
|
+
super(paperclip16X16);
|
|
24176
|
+
}
|
|
24177
|
+
}
|
|
24178
|
+
registerIcon('icon-paperclip', IconPaperclip);
|
|
24179
|
+
|
|
24070
24180
|
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
24071
24181
|
// See generation source in nimble-components/build/generate-icons
|
|
24072
24182
|
/**
|
|
@@ -24151,6 +24261,18 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
24151
24261
|
}
|
|
24152
24262
|
registerIcon('icon-rectangle-check-lines', IconRectangleCheckLines);
|
|
24153
24263
|
|
|
24264
|
+
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
24265
|
+
// See generation source in nimble-components/build/generate-icons
|
|
24266
|
+
/**
|
|
24267
|
+
* The icon component for the 'rectangleLines' icon
|
|
24268
|
+
*/
|
|
24269
|
+
class IconRectangleLines extends Icon {
|
|
24270
|
+
constructor() {
|
|
24271
|
+
super(rectangleLines16X16);
|
|
24272
|
+
}
|
|
24273
|
+
}
|
|
24274
|
+
registerIcon('icon-rectangle-lines', IconRectangleLines);
|
|
24275
|
+
|
|
24154
24276
|
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
24155
24277
|
// See generation source in nimble-components/build/generate-icons
|
|
24156
24278
|
/**
|
|
@@ -24343,6 +24465,18 @@ so this becomes the fallback color for the slot */ ''}
|
|
|
24343
24465
|
}
|
|
24344
24466
|
registerIcon('icon-square-x', IconSquareX);
|
|
24345
24467
|
|
|
24468
|
+
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
24469
|
+
// See generation source in nimble-components/build/generate-icons
|
|
24470
|
+
/**
|
|
24471
|
+
* The icon component for the 'star8Point' icon
|
|
24472
|
+
*/
|
|
24473
|
+
class IconStar8Point extends Icon {
|
|
24474
|
+
constructor() {
|
|
24475
|
+
super(star8Point16X16);
|
|
24476
|
+
}
|
|
24477
|
+
}
|
|
24478
|
+
registerIcon('icon-star-8-point', IconStar8Point);
|
|
24479
|
+
|
|
24346
24480
|
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
24347
24481
|
// See generation source in nimble-components/build/generate-icons
|
|
24348
24482
|
/**
|