@ni/nimble-components 21.6.8 → 21.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all-components-bundle.js +98 -2
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +2789 -2783
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/icons/all-icons.d.ts +6 -0
- package/dist/esm/icons/all-icons.js +6 -0
- package/dist/esm/icons/all-icons.js.map +1 -1
- package/dist/esm/icons/eye-dash.d.ts +13 -0
- package/dist/esm/icons/eye-dash.js +15 -0
- package/dist/esm/icons/eye-dash.js.map +1 -0
- package/dist/esm/icons/horizontal-triangle-outline.d.ts +13 -0
- package/dist/esm/icons/horizontal-triangle-outline.js +15 -0
- package/dist/esm/icons/horizontal-triangle-outline.js.map +1 -0
- package/dist/esm/icons/inward-squares-three.d.ts +13 -0
- package/dist/esm/icons/inward-squares-three.js +15 -0
- package/dist/esm/icons/inward-squares-three.js.map +1 -0
- package/dist/esm/icons/outward-squares-three.d.ts +13 -0
- package/dist/esm/icons/outward-squares-three.js +15 -0
- package/dist/esm/icons/outward-squares-three.js.map +1 -0
- package/dist/esm/icons/square-x.d.ts +13 -0
- package/dist/esm/icons/square-x.js +15 -0
- package/dist/esm/icons/square-x.js.map +1 -0
- package/dist/esm/icons/three-circles-ascending-container.d.ts +13 -0
- package/dist/esm/icons/three-circles-ascending-container.js +15 -0
- package/dist/esm/icons/three-circles-ascending-container.js.map +1 -0
- package/dist/esm/wafer-map/modules/create-matrix-renderer.d.ts +10 -0
- package/dist/esm/wafer-map/modules/create-matrix-renderer.js +23 -0
- package/dist/esm/wafer-map/modules/create-matrix-renderer.js.map +1 -0
- package/dist/esm/wafer-map/workers/matrix-renderer.d.ts +1 -0
- package/dist/esm/wafer-map/workers/matrix-renderer.js +3 -0
- package/dist/esm/wafer-map/workers/matrix-renderer.js.map +1 -0
- package/package.json +8 -3
|
@@ -76,6 +76,7 @@ export { IconDownload } from './download';
|
|
|
76
76
|
export { IconElectronicChipZoomed } from './electronic-chip-zoomed';
|
|
77
77
|
export { IconExclamationMark } from './exclamation-mark';
|
|
78
78
|
export { IconEye } from './eye';
|
|
79
|
+
export { IconEyeDash } from './eye-dash';
|
|
79
80
|
export { IconFancyA } from './fancy-a';
|
|
80
81
|
export { IconFile } from './file';
|
|
81
82
|
export { IconFileArrowCurvedRight } from './file-arrow-curved-right';
|
|
@@ -98,11 +99,13 @@ export { IconGridTwoByTwo } from './grid-two-by-two';
|
|
|
98
99
|
export { IconHammer } from './hammer';
|
|
99
100
|
export { IconHashtag } from './hashtag';
|
|
100
101
|
export { IconHome } from './home';
|
|
102
|
+
export { IconHorizontalTriangleOutline } from './horizontal-triangle-outline';
|
|
101
103
|
export { IconHourglass } from './hourglass';
|
|
102
104
|
export { IconIndent } from './indent';
|
|
103
105
|
export { IconIndeterminantCheckbox } from './indeterminant-checkbox';
|
|
104
106
|
export { IconInfo } from './info';
|
|
105
107
|
export { IconInfoCircle } from './info-circle';
|
|
108
|
+
export { IconInwardSquaresThree } from './inward-squares-three';
|
|
106
109
|
export { IconItalicI } from './italic-i';
|
|
107
110
|
export { IconKey } from './key';
|
|
108
111
|
export { IconLaptop } from './laptop';
|
|
@@ -123,6 +126,7 @@ export { IconNi } from './ni';
|
|
|
123
126
|
export { IconNotebook } from './notebook';
|
|
124
127
|
export { IconNumberList } from './number-list';
|
|
125
128
|
export { IconOutdent } from './outdent';
|
|
129
|
+
export { IconOutwardSquaresThree } from './outward-squares-three';
|
|
126
130
|
export { IconPaste } from './paste';
|
|
127
131
|
export { IconPause } from './pause';
|
|
128
132
|
export { IconPencil } from './pencil';
|
|
@@ -143,6 +147,7 @@ export { IconSkipArrow } from './skip-arrow';
|
|
|
143
147
|
export { IconSpinner } from './spinner';
|
|
144
148
|
export { IconSquareCheck } from './square-check';
|
|
145
149
|
export { IconSquareT } from './square-t';
|
|
150
|
+
export { IconSquareX } from './square-x';
|
|
146
151
|
export { IconStopSquare } from './stop-square';
|
|
147
152
|
export { IconSystemlink } from './systemlink';
|
|
148
153
|
export { IconT } from './t';
|
|
@@ -151,6 +156,7 @@ export { IconTag } from './tag';
|
|
|
151
156
|
export { IconTags } from './tags';
|
|
152
157
|
export { IconTargetCrosshairs } from './target-crosshairs';
|
|
153
158
|
export { IconTargetCrosshairsProgress } from './target-crosshairs-progress';
|
|
159
|
+
export { IconThreeCirclesAscendingContainer } from './three-circles-ascending-container';
|
|
154
160
|
export { IconThreeDotsLine } from './three-dots-line';
|
|
155
161
|
export { IconThreeVerticalLines } from './three-vertical-lines';
|
|
156
162
|
export { IconThumbtack } from './thumbtack';
|
|
@@ -78,6 +78,7 @@ export { IconDownload } from './download';
|
|
|
78
78
|
export { IconElectronicChipZoomed } from './electronic-chip-zoomed';
|
|
79
79
|
export { IconExclamationMark } from './exclamation-mark';
|
|
80
80
|
export { IconEye } from './eye';
|
|
81
|
+
export { IconEyeDash } from './eye-dash';
|
|
81
82
|
export { IconFancyA } from './fancy-a';
|
|
82
83
|
export { IconFile } from './file';
|
|
83
84
|
export { IconFileArrowCurvedRight } from './file-arrow-curved-right';
|
|
@@ -100,11 +101,13 @@ export { IconGridTwoByTwo } from './grid-two-by-two';
|
|
|
100
101
|
export { IconHammer } from './hammer';
|
|
101
102
|
export { IconHashtag } from './hashtag';
|
|
102
103
|
export { IconHome } from './home';
|
|
104
|
+
export { IconHorizontalTriangleOutline } from './horizontal-triangle-outline';
|
|
103
105
|
export { IconHourglass } from './hourglass';
|
|
104
106
|
export { IconIndent } from './indent';
|
|
105
107
|
export { IconIndeterminantCheckbox } from './indeterminant-checkbox';
|
|
106
108
|
export { IconInfo } from './info';
|
|
107
109
|
export { IconInfoCircle } from './info-circle';
|
|
110
|
+
export { IconInwardSquaresThree } from './inward-squares-three';
|
|
108
111
|
export { IconItalicI } from './italic-i';
|
|
109
112
|
export { IconKey } from './key';
|
|
110
113
|
export { IconLaptop } from './laptop';
|
|
@@ -125,6 +128,7 @@ export { IconNi } from './ni';
|
|
|
125
128
|
export { IconNotebook } from './notebook';
|
|
126
129
|
export { IconNumberList } from './number-list';
|
|
127
130
|
export { IconOutdent } from './outdent';
|
|
131
|
+
export { IconOutwardSquaresThree } from './outward-squares-three';
|
|
128
132
|
export { IconPaste } from './paste';
|
|
129
133
|
export { IconPause } from './pause';
|
|
130
134
|
export { IconPencil } from './pencil';
|
|
@@ -145,6 +149,7 @@ export { IconSkipArrow } from './skip-arrow';
|
|
|
145
149
|
export { IconSpinner } from './spinner';
|
|
146
150
|
export { IconSquareCheck } from './square-check';
|
|
147
151
|
export { IconSquareT } from './square-t';
|
|
152
|
+
export { IconSquareX } from './square-x';
|
|
148
153
|
export { IconStopSquare } from './stop-square';
|
|
149
154
|
export { IconSystemlink } from './systemlink';
|
|
150
155
|
export { IconT } from './t';
|
|
@@ -153,6 +158,7 @@ export { IconTag } from './tag';
|
|
|
153
158
|
export { IconTags } from './tags';
|
|
154
159
|
export { IconTargetCrosshairs } from './target-crosshairs';
|
|
155
160
|
export { IconTargetCrosshairsProgress } from './target-crosshairs-progress';
|
|
161
|
+
export { IconThreeCirclesAscendingContainer } from './three-circles-ascending-container';
|
|
156
162
|
export { IconThreeDotsLine } from './three-dots-line';
|
|
157
163
|
export { IconThreeVerticalLines } from './three-vertical-lines';
|
|
158
164
|
export { IconThumbtack } from './thumbtack';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"all-icons.js","sourceRoot":"","sources":["../../../src/icons/all-icons.ts"],"names":[],"mappings":"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","sourcesContent":["// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY\n// See generation source in nimble-components/build/generate-icons\n\nexport { IconAdd } from './add';\nexport { IconArrowDown } from './arrow-down';\nexport { IconArrowDownRightAndArrowUpLeft } from './arrow-down-right-and-arrow-up-left';\nexport { IconArrowExpanderDown } from './arrow-expander-down';\nexport { IconArrowExpanderLeft } from './arrow-expander-left';\nexport { IconArrowExpanderRight } from './arrow-expander-right';\nexport { IconArrowExpanderUp } from './arrow-expander-up';\nexport { IconArrowInCircle } from './arrow-in-circle';\nexport { IconArrowLeftFromLine } from './arrow-left-from-line';\nexport { IconArrowOutCircle } from './arrow-out-circle';\nexport { IconArrowPartialRotateLeft } from './arrow-partial-rotate-left';\nexport { IconArrowRightToLine } from './arrow-right-to-line';\nexport { IconArrowRotateRight } from './arrow-rotate-right';\nexport { IconArrowURotateLeft } from './arrow-u-rotate-left';\nexport { IconArrowUp } from './arrow-up';\nexport { IconArrowUpLeftAndArrowDownRight } from './arrow-up-left-and-arrow-down-right';\nexport { IconArrowUpRightFromSquare } from './arrow-up-right-from-square';\nexport { IconArrowsMaximize } from './arrows-maximize';\nexport { IconArrowsRepeat } from './arrows-repeat';\nexport { IconAt } from './at';\nexport { IconBars } from './bars';\nexport { IconBell } from './bell';\nexport { IconBellAndComment } from './bell-and-comment';\nexport { IconBellCircle } from './bell-circle';\nexport { IconBellSolidCircle } from './bell-solid-circle';\nexport { IconBlockWithRibbon } from './block-with-ribbon';\nexport { IconBoldB } from './bold-b';\nexport { IconBookMagnifyingGlass } from './book-magnifying-glass';\nexport { IconCalendar } from './calendar';\nexport { IconCalendarCheckLines } from './calendar-check-lines';\nexport { IconCalendarDay } from './calendar-day';\nexport { IconChartDiagram } from './chart-diagram';\nexport { IconChartDiagramChildFocus } from './chart-diagram-child-focus';\nexport { IconChartDiagramParentFocus } from './chart-diagram-parent-focus';\nexport { IconChartDiagramParentFocusTwoChild } from './chart-diagram-parent-focus-two-child';\nexport { IconCheck } from './check';\nexport { IconCheckDot } from './check-dot';\nexport { IconCheckLarge } from './check-large';\nexport { IconCircle } from './circle';\nexport { IconCircleBroken } from './circle-broken';\nexport { IconCircleCheck } from './circle-check';\nexport { IconCircleFilled } from './circle-filled';\nexport { IconCirclePartialBroken } from './circle-partial-broken';\nexport { IconCircleSlash } from './circle-slash';\nexport { IconCircleX } from './circle-x';\nexport { IconClipboard } from './clipboard';\nexport { IconClock } from './clock';\nexport { IconClockCog } from './clock-cog';\nexport { IconClockExclamation } from './clock-exclamation';\nexport { IconClockTriangle } from './clock-triangle';\nexport { IconClone } from './clone';\nexport { IconCloud } from './cloud';\nexport { IconCloudUpload } from './cloud-upload';\nexport { IconCloudWithArrow } from './cloud-with-arrow';\nexport { IconCog } from './cog';\nexport { IconCogDatabase } from './cog-database';\nexport { IconCogDatabaseInset } from './cog-database-inset';\nexport { IconCogSmallCog } from './cog-small-cog';\nexport { IconCogZoomed } from './cog-zoomed';\nexport { IconComment } from './comment';\nexport { IconComputerAndMonitor } from './computer-and-monitor';\nexport { IconCopy } from './copy';\nexport { IconCopyText } from './copy-text';\nexport { IconDashboardBuilder } from './dashboard-builder';\nexport { IconDashboardBuilderLegend } from './dashboard-builder-legend';\nexport { IconDashboardBuilderTemplates } from './dashboard-builder-templates';\nexport { IconDashboardBuilderTile } from './dashboard-builder-tile';\nexport { IconDatabase } from './database';\nexport { IconDatabaseCheck } from './database-check';\nexport { IconDesktop } from './desktop';\nexport { IconDonutChart } from './donut-chart';\nexport { IconDotSolidDotStroke } from './dot-solid-dot-stroke';\nexport { IconDotSolidDotStrokeMeasurement } from './dot-solid-dot-stroke-measurement';\nexport { IconDownRightFromSquare } from './down-right-from-square';\nexport { IconDownload } from './download';\nexport { IconElectronicChipZoomed } from './electronic-chip-zoomed';\nexport { IconExclamationMark } from './exclamation-mark';\nexport { IconEye } from './eye';\nexport { IconFancyA } from './fancy-a';\nexport { IconFile } from './file';\nexport { IconFileArrowCurvedRight } from './file-arrow-curved-right';\nexport { IconFileDrawer } from './file-drawer';\nexport { IconFileSearch } from './file-search';\nexport { IconFilter } from './filter';\nexport { IconFloppyDisk } from './floppy-disk';\nexport { IconFloppyDiskCheckmark } from './floppy-disk-checkmark';\nexport { IconFloppyDiskPen } from './floppy-disk-pen';\nexport { IconFloppyDiskStarArrowRight } from './floppy-disk-star-arrow-right';\nexport { IconFloppyDiskThreeDots } from './floppy-disk-three-dots';\nexport { IconFolder } from './folder';\nexport { IconFolderOpen } from './folder-open';\nexport { IconForwardSlash } from './forward-slash';\nexport { IconFourDotsSquare } from './four-dots-square';\nexport { IconFunction } from './function';\nexport { IconGaugeSimple } from './gauge-simple';\nexport { IconGridThreeByThree } from './grid-three-by-three';\nexport { IconGridTwoByTwo } from './grid-two-by-two';\nexport { IconHammer } from './hammer';\nexport { IconHashtag } from './hashtag';\nexport { IconHome } from './home';\nexport { IconHourglass } from './hourglass';\nexport { IconIndent } from './indent';\nexport { IconIndeterminantCheckbox } from './indeterminant-checkbox';\nexport { IconInfo } from './info';\nexport { IconInfoCircle } from './info-circle';\nexport { IconItalicI } from './italic-i';\nexport { IconKey } from './key';\nexport { IconLaptop } from './laptop';\nexport { IconLayerGroup } from './layer-group';\nexport { IconLightningBolt } from './lightning-bolt';\nexport { IconLink } from './link';\nexport { IconLinkCancel } from './link-cancel';\nexport { IconList } from './list';\nexport { IconListTree } from './list-tree';\nexport { IconListTreeDatabase } from './list-tree-database';\nexport { IconLock } from './lock';\nexport { IconMagnifyingGlass } from './magnifying-glass';\nexport { IconMarkdown } from './markdown';\nexport { IconMinus } from './minus';\nexport { IconMinusWide } from './minus-wide';\nexport { IconMobile } from './mobile';\nexport { IconNi } from './ni';\nexport { IconNotebook } from './notebook';\nexport { IconNumberList } from './number-list';\nexport { IconOutdent } from './outdent';\nexport { IconPaste } from './paste';\nexport { IconPause } from './pause';\nexport { IconPencil } from './pencil';\nexport { IconPlay } from './play';\nexport { IconPotWithLid } from './pot-with-lid';\nexport { IconQuestion } from './question';\nexport { IconRectangleCheckLines } from './rectangle-check-lines';\nexport { IconRunningArrow } from './running-arrow';\nexport { IconScreenCheckLines } from './screen-check-lines';\nexport { IconScreenCheckLinesCalendar } from './screen-check-lines-calendar';\nexport { IconServer } from './server';\nexport { IconShareNodes } from './share-nodes';\nexport { IconShieldCheck } from './shield-check';\nexport { IconShieldXmark } from './shield-xmark';\nexport { IconSignalBars } from './signal-bars';\nexport { IconSineGraph } from './sine-graph';\nexport { IconSkipArrow } from './skip-arrow';\nexport { IconSpinner } from './spinner';\nexport { IconSquareCheck } from './square-check';\nexport { IconSquareT } from './square-t';\nexport { IconStopSquare } from './stop-square';\nexport { IconSystemlink } from './systemlink';\nexport { IconT } from './t';\nexport { IconTablet } from './tablet';\nexport { IconTag } from './tag';\nexport { IconTags } from './tags';\nexport { IconTargetCrosshairs } from './target-crosshairs';\nexport { IconTargetCrosshairsProgress } from './target-crosshairs-progress';\nexport { IconThreeDotsLine } from './three-dots-line';\nexport { IconThreeVerticalLines } from './three-vertical-lines';\nexport { IconThumbtack } from './thumbtack';\nexport { IconTileSize } from './tile-size';\nexport { IconTimes } from './times';\nexport { IconTrash } from './trash';\nexport { IconTriangle } from './triangle';\nexport { IconTriangleFilled } from './triangle-filled';\nexport { IconTriangleTwoLinesHorizontal } from './triangle-two-lines-horizontal';\nexport { IconTrueFalseRectangle } from './true-false-rectangle';\nexport { IconTwoSquaresInBrackets } from './two-squares-in-brackets';\nexport { IconTwoTrianglesBetweenLines } from './two-triangles-between-lines';\nexport { IconUnlink } from './unlink';\nexport { IconUnlock } from './unlock';\nexport { IconUpRightFromSquare } from './up-right-from-square';\nexport { IconUpload } from './upload';\nexport { IconUser } from './user';\nexport { IconWatch } from './watch';\nexport { IconWaveform } from './waveform';\nexport { IconWebviCustom } from './webvi-custom';\nexport { IconWebviHost } from './webvi-host';\nexport { IconWindowCode } from './window-code';\nexport { IconWindowText } from './window-text';\nexport { IconWrenchHammer } from './wrench-hammer';\nexport { IconXmark } from './xmark';\nexport { IconXmarkCheck } from './xmark-check';\n"]}
|
|
1
|
+
{"version":3,"file":"all-icons.js","sourceRoot":"","sources":["../../../src/icons/all-icons.ts"],"names":[],"mappings":"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","sourcesContent":["// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY\n// See generation source in nimble-components/build/generate-icons\n\nexport { IconAdd } from './add';\nexport { IconArrowDown } from './arrow-down';\nexport { IconArrowDownRightAndArrowUpLeft } from './arrow-down-right-and-arrow-up-left';\nexport { IconArrowExpanderDown } from './arrow-expander-down';\nexport { IconArrowExpanderLeft } from './arrow-expander-left';\nexport { IconArrowExpanderRight } from './arrow-expander-right';\nexport { IconArrowExpanderUp } from './arrow-expander-up';\nexport { IconArrowInCircle } from './arrow-in-circle';\nexport { IconArrowLeftFromLine } from './arrow-left-from-line';\nexport { IconArrowOutCircle } from './arrow-out-circle';\nexport { IconArrowPartialRotateLeft } from './arrow-partial-rotate-left';\nexport { IconArrowRightToLine } from './arrow-right-to-line';\nexport { IconArrowRotateRight } from './arrow-rotate-right';\nexport { IconArrowURotateLeft } from './arrow-u-rotate-left';\nexport { IconArrowUp } from './arrow-up';\nexport { IconArrowUpLeftAndArrowDownRight } from './arrow-up-left-and-arrow-down-right';\nexport { IconArrowUpRightFromSquare } from './arrow-up-right-from-square';\nexport { IconArrowsMaximize } from './arrows-maximize';\nexport { IconArrowsRepeat } from './arrows-repeat';\nexport { IconAt } from './at';\nexport { IconBars } from './bars';\nexport { IconBell } from './bell';\nexport { IconBellAndComment } from './bell-and-comment';\nexport { IconBellCircle } from './bell-circle';\nexport { IconBellSolidCircle } from './bell-solid-circle';\nexport { IconBlockWithRibbon } from './block-with-ribbon';\nexport { IconBoldB } from './bold-b';\nexport { IconBookMagnifyingGlass } from './book-magnifying-glass';\nexport { IconCalendar } from './calendar';\nexport { IconCalendarCheckLines } from './calendar-check-lines';\nexport { IconCalendarDay } from './calendar-day';\nexport { IconChartDiagram } from './chart-diagram';\nexport { IconChartDiagramChildFocus } from './chart-diagram-child-focus';\nexport { IconChartDiagramParentFocus } from './chart-diagram-parent-focus';\nexport { IconChartDiagramParentFocusTwoChild } from './chart-diagram-parent-focus-two-child';\nexport { IconCheck } from './check';\nexport { IconCheckDot } from './check-dot';\nexport { IconCheckLarge } from './check-large';\nexport { IconCircle } from './circle';\nexport { IconCircleBroken } from './circle-broken';\nexport { IconCircleCheck } from './circle-check';\nexport { IconCircleFilled } from './circle-filled';\nexport { IconCirclePartialBroken } from './circle-partial-broken';\nexport { IconCircleSlash } from './circle-slash';\nexport { IconCircleX } from './circle-x';\nexport { IconClipboard } from './clipboard';\nexport { IconClock } from './clock';\nexport { IconClockCog } from './clock-cog';\nexport { IconClockExclamation } from './clock-exclamation';\nexport { IconClockTriangle } from './clock-triangle';\nexport { IconClone } from './clone';\nexport { IconCloud } from './cloud';\nexport { IconCloudUpload } from './cloud-upload';\nexport { IconCloudWithArrow } from './cloud-with-arrow';\nexport { IconCog } from './cog';\nexport { IconCogDatabase } from './cog-database';\nexport { IconCogDatabaseInset } from './cog-database-inset';\nexport { IconCogSmallCog } from './cog-small-cog';\nexport { IconCogZoomed } from './cog-zoomed';\nexport { IconComment } from './comment';\nexport { IconComputerAndMonitor } from './computer-and-monitor';\nexport { IconCopy } from './copy';\nexport { IconCopyText } from './copy-text';\nexport { IconDashboardBuilder } from './dashboard-builder';\nexport { IconDashboardBuilderLegend } from './dashboard-builder-legend';\nexport { IconDashboardBuilderTemplates } from './dashboard-builder-templates';\nexport { IconDashboardBuilderTile } from './dashboard-builder-tile';\nexport { IconDatabase } from './database';\nexport { IconDatabaseCheck } from './database-check';\nexport { IconDesktop } from './desktop';\nexport { IconDonutChart } from './donut-chart';\nexport { IconDotSolidDotStroke } from './dot-solid-dot-stroke';\nexport { IconDotSolidDotStrokeMeasurement } from './dot-solid-dot-stroke-measurement';\nexport { IconDownRightFromSquare } from './down-right-from-square';\nexport { IconDownload } from './download';\nexport { IconElectronicChipZoomed } from './electronic-chip-zoomed';\nexport { IconExclamationMark } from './exclamation-mark';\nexport { IconEye } from './eye';\nexport { IconEyeDash } from './eye-dash';\nexport { IconFancyA } from './fancy-a';\nexport { IconFile } from './file';\nexport { IconFileArrowCurvedRight } from './file-arrow-curved-right';\nexport { IconFileDrawer } from './file-drawer';\nexport { IconFileSearch } from './file-search';\nexport { IconFilter } from './filter';\nexport { IconFloppyDisk } from './floppy-disk';\nexport { IconFloppyDiskCheckmark } from './floppy-disk-checkmark';\nexport { IconFloppyDiskPen } from './floppy-disk-pen';\nexport { IconFloppyDiskStarArrowRight } from './floppy-disk-star-arrow-right';\nexport { IconFloppyDiskThreeDots } from './floppy-disk-three-dots';\nexport { IconFolder } from './folder';\nexport { IconFolderOpen } from './folder-open';\nexport { IconForwardSlash } from './forward-slash';\nexport { IconFourDotsSquare } from './four-dots-square';\nexport { IconFunction } from './function';\nexport { IconGaugeSimple } from './gauge-simple';\nexport { IconGridThreeByThree } from './grid-three-by-three';\nexport { IconGridTwoByTwo } from './grid-two-by-two';\nexport { IconHammer } from './hammer';\nexport { IconHashtag } from './hashtag';\nexport { IconHome } from './home';\nexport { IconHorizontalTriangleOutline } from './horizontal-triangle-outline';\nexport { IconHourglass } from './hourglass';\nexport { IconIndent } from './indent';\nexport { IconIndeterminantCheckbox } from './indeterminant-checkbox';\nexport { IconInfo } from './info';\nexport { IconInfoCircle } from './info-circle';\nexport { IconInwardSquaresThree } from './inward-squares-three';\nexport { IconItalicI } from './italic-i';\nexport { IconKey } from './key';\nexport { IconLaptop } from './laptop';\nexport { IconLayerGroup } from './layer-group';\nexport { IconLightningBolt } from './lightning-bolt';\nexport { IconLink } from './link';\nexport { IconLinkCancel } from './link-cancel';\nexport { IconList } from './list';\nexport { IconListTree } from './list-tree';\nexport { IconListTreeDatabase } from './list-tree-database';\nexport { IconLock } from './lock';\nexport { IconMagnifyingGlass } from './magnifying-glass';\nexport { IconMarkdown } from './markdown';\nexport { IconMinus } from './minus';\nexport { IconMinusWide } from './minus-wide';\nexport { IconMobile } from './mobile';\nexport { IconNi } from './ni';\nexport { IconNotebook } from './notebook';\nexport { IconNumberList } from './number-list';\nexport { IconOutdent } from './outdent';\nexport { IconOutwardSquaresThree } from './outward-squares-three';\nexport { IconPaste } from './paste';\nexport { IconPause } from './pause';\nexport { IconPencil } from './pencil';\nexport { IconPlay } from './play';\nexport { IconPotWithLid } from './pot-with-lid';\nexport { IconQuestion } from './question';\nexport { IconRectangleCheckLines } from './rectangle-check-lines';\nexport { IconRunningArrow } from './running-arrow';\nexport { IconScreenCheckLines } from './screen-check-lines';\nexport { IconScreenCheckLinesCalendar } from './screen-check-lines-calendar';\nexport { IconServer } from './server';\nexport { IconShareNodes } from './share-nodes';\nexport { IconShieldCheck } from './shield-check';\nexport { IconShieldXmark } from './shield-xmark';\nexport { IconSignalBars } from './signal-bars';\nexport { IconSineGraph } from './sine-graph';\nexport { IconSkipArrow } from './skip-arrow';\nexport { IconSpinner } from './spinner';\nexport { IconSquareCheck } from './square-check';\nexport { IconSquareT } from './square-t';\nexport { IconSquareX } from './square-x';\nexport { IconStopSquare } from './stop-square';\nexport { IconSystemlink } from './systemlink';\nexport { IconT } from './t';\nexport { IconTablet } from './tablet';\nexport { IconTag } from './tag';\nexport { IconTags } from './tags';\nexport { IconTargetCrosshairs } from './target-crosshairs';\nexport { IconTargetCrosshairsProgress } from './target-crosshairs-progress';\nexport { IconThreeCirclesAscendingContainer } from './three-circles-ascending-container';\nexport { IconThreeDotsLine } from './three-dots-line';\nexport { IconThreeVerticalLines } from './three-vertical-lines';\nexport { IconThumbtack } from './thumbtack';\nexport { IconTileSize } from './tile-size';\nexport { IconTimes } from './times';\nexport { IconTrash } from './trash';\nexport { IconTriangle } from './triangle';\nexport { IconTriangleFilled } from './triangle-filled';\nexport { IconTriangleTwoLinesHorizontal } from './triangle-two-lines-horizontal';\nexport { IconTrueFalseRectangle } from './true-false-rectangle';\nexport { IconTwoSquaresInBrackets } from './two-squares-in-brackets';\nexport { IconTwoTrianglesBetweenLines } from './two-triangles-between-lines';\nexport { IconUnlink } from './unlink';\nexport { IconUnlock } from './unlock';\nexport { IconUpRightFromSquare } from './up-right-from-square';\nexport { IconUpload } from './upload';\nexport { IconUser } from './user';\nexport { IconWatch } from './watch';\nexport { IconWaveform } from './waveform';\nexport { IconWebviCustom } from './webvi-custom';\nexport { IconWebviHost } from './webvi-host';\nexport { IconWindowCode } from './window-code';\nexport { IconWindowText } from './window-text';\nexport { IconWrenchHammer } from './wrench-hammer';\nexport { IconXmark } from './xmark';\nexport { IconXmarkCheck } from './xmark-check';\n"]}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Icon } from '../icon-base';
|
|
2
|
+
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'nimble-icon-eye-dash': IconEyeDash;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* The icon component for the 'eyeDash' icon
|
|
9
|
+
*/
|
|
10
|
+
export declare class IconEyeDash extends Icon {
|
|
11
|
+
constructor();
|
|
12
|
+
}
|
|
13
|
+
export declare const iconEyeDashTag = "nimble-icon-eye-dash";
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
2
|
+
// See generation source in nimble-components/build/generate-icons
|
|
3
|
+
import { eyeDash16X16 } from '@ni/nimble-tokens/dist/icons/js';
|
|
4
|
+
import { Icon, registerIcon } from '../icon-base';
|
|
5
|
+
/**
|
|
6
|
+
* The icon component for the 'eyeDash' icon
|
|
7
|
+
*/
|
|
8
|
+
export class IconEyeDash extends Icon {
|
|
9
|
+
constructor() {
|
|
10
|
+
super(eyeDash16X16);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
registerIcon('icon-eye-dash', IconEyeDash);
|
|
14
|
+
export const iconEyeDashTag = 'nimble-icon-eye-dash';
|
|
15
|
+
//# sourceMappingURL=eye-dash.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"eye-dash.js","sourceRoot":"","sources":["../../../src/icons/eye-dash.ts"],"names":[],"mappings":"AAAA,6CAA6C;AAC7C,kEAAkE;AAElE,OAAO,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AAC/D,OAAO,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAQlD;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,IAAI;IACjC;QACI,KAAK,CAAC,YAAY,CAAC,CAAC;IACxB,CAAC;CACJ;AAED,YAAY,CAAC,eAAe,EAAE,WAAW,CAAC,CAAC;AAC3C,MAAM,CAAC,MAAM,cAAc,GAAG,sBAAsB,CAAC","sourcesContent":["// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY\n// See generation source in nimble-components/build/generate-icons\n\nimport { eyeDash16X16 } from '@ni/nimble-tokens/dist/icons/js';\nimport { Icon, registerIcon } from '../icon-base';\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'nimble-icon-eye-dash': IconEyeDash;\n }\n}\n\n/**\n * The icon component for the 'eyeDash' icon\n */\nexport class IconEyeDash extends Icon {\n public constructor() {\n super(eyeDash16X16);\n }\n}\n\nregisterIcon('icon-eye-dash', IconEyeDash);\nexport const iconEyeDashTag = 'nimble-icon-eye-dash';\n"]}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Icon } from '../icon-base';
|
|
2
|
+
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'nimble-icon-horizontal-triangle-outline': IconHorizontalTriangleOutline;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* The icon component for the 'horizontalTriangleOutline' icon
|
|
9
|
+
*/
|
|
10
|
+
export declare class IconHorizontalTriangleOutline extends Icon {
|
|
11
|
+
constructor();
|
|
12
|
+
}
|
|
13
|
+
export declare const iconHorizontalTriangleOutlineTag = "nimble-icon-horizontal-triangle-outline";
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
2
|
+
// See generation source in nimble-components/build/generate-icons
|
|
3
|
+
import { horizontalTriangleOutline16X16 } from '@ni/nimble-tokens/dist/icons/js';
|
|
4
|
+
import { Icon, registerIcon } from '../icon-base';
|
|
5
|
+
/**
|
|
6
|
+
* The icon component for the 'horizontalTriangleOutline' icon
|
|
7
|
+
*/
|
|
8
|
+
export class IconHorizontalTriangleOutline extends Icon {
|
|
9
|
+
constructor() {
|
|
10
|
+
super(horizontalTriangleOutline16X16);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
registerIcon('icon-horizontal-triangle-outline', IconHorizontalTriangleOutline);
|
|
14
|
+
export const iconHorizontalTriangleOutlineTag = 'nimble-icon-horizontal-triangle-outline';
|
|
15
|
+
//# sourceMappingURL=horizontal-triangle-outline.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"horizontal-triangle-outline.js","sourceRoot":"","sources":["../../../src/icons/horizontal-triangle-outline.ts"],"names":[],"mappings":"AAAA,6CAA6C;AAC7C,kEAAkE;AAElE,OAAO,EAAE,8BAA8B,EAAE,MAAM,iCAAiC,CAAC;AACjF,OAAO,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAQlD;;GAEG;AACH,MAAM,OAAO,6BAA8B,SAAQ,IAAI;IACnD;QACI,KAAK,CAAC,8BAA8B,CAAC,CAAC;IAC1C,CAAC;CACJ;AAED,YAAY,CAAC,kCAAkC,EAAE,6BAA6B,CAAC,CAAC;AAChF,MAAM,CAAC,MAAM,gCAAgC,GAAG,yCAAyC,CAAC","sourcesContent":["// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY\n// See generation source in nimble-components/build/generate-icons\n\nimport { horizontalTriangleOutline16X16 } from '@ni/nimble-tokens/dist/icons/js';\nimport { Icon, registerIcon } from '../icon-base';\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'nimble-icon-horizontal-triangle-outline': IconHorizontalTriangleOutline;\n }\n}\n\n/**\n * The icon component for the 'horizontalTriangleOutline' icon\n */\nexport class IconHorizontalTriangleOutline extends Icon {\n public constructor() {\n super(horizontalTriangleOutline16X16);\n }\n}\n\nregisterIcon('icon-horizontal-triangle-outline', IconHorizontalTriangleOutline);\nexport const iconHorizontalTriangleOutlineTag = 'nimble-icon-horizontal-triangle-outline';\n"]}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Icon } from '../icon-base';
|
|
2
|
+
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'nimble-icon-inward-squares-three': IconInwardSquaresThree;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* The icon component for the 'inwardSquaresThree' icon
|
|
9
|
+
*/
|
|
10
|
+
export declare class IconInwardSquaresThree extends Icon {
|
|
11
|
+
constructor();
|
|
12
|
+
}
|
|
13
|
+
export declare const iconInwardSquaresThreeTag = "nimble-icon-inward-squares-three";
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
2
|
+
// See generation source in nimble-components/build/generate-icons
|
|
3
|
+
import { inwardSquaresThree16X16 } from '@ni/nimble-tokens/dist/icons/js';
|
|
4
|
+
import { Icon, registerIcon } from '../icon-base';
|
|
5
|
+
/**
|
|
6
|
+
* The icon component for the 'inwardSquaresThree' icon
|
|
7
|
+
*/
|
|
8
|
+
export class IconInwardSquaresThree extends Icon {
|
|
9
|
+
constructor() {
|
|
10
|
+
super(inwardSquaresThree16X16);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
registerIcon('icon-inward-squares-three', IconInwardSquaresThree);
|
|
14
|
+
export const iconInwardSquaresThreeTag = 'nimble-icon-inward-squares-three';
|
|
15
|
+
//# sourceMappingURL=inward-squares-three.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"inward-squares-three.js","sourceRoot":"","sources":["../../../src/icons/inward-squares-three.ts"],"names":[],"mappings":"AAAA,6CAA6C;AAC7C,kEAAkE;AAElE,OAAO,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAC;AAC1E,OAAO,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAQlD;;GAEG;AACH,MAAM,OAAO,sBAAuB,SAAQ,IAAI;IAC5C;QACI,KAAK,CAAC,uBAAuB,CAAC,CAAC;IACnC,CAAC;CACJ;AAED,YAAY,CAAC,2BAA2B,EAAE,sBAAsB,CAAC,CAAC;AAClE,MAAM,CAAC,MAAM,yBAAyB,GAAG,kCAAkC,CAAC","sourcesContent":["// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY\n// See generation source in nimble-components/build/generate-icons\n\nimport { inwardSquaresThree16X16 } from '@ni/nimble-tokens/dist/icons/js';\nimport { Icon, registerIcon } from '../icon-base';\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'nimble-icon-inward-squares-three': IconInwardSquaresThree;\n }\n}\n\n/**\n * The icon component for the 'inwardSquaresThree' icon\n */\nexport class IconInwardSquaresThree extends Icon {\n public constructor() {\n super(inwardSquaresThree16X16);\n }\n}\n\nregisterIcon('icon-inward-squares-three', IconInwardSquaresThree);\nexport const iconInwardSquaresThreeTag = 'nimble-icon-inward-squares-three';\n"]}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Icon } from '../icon-base';
|
|
2
|
+
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'nimble-icon-outward-squares-three': IconOutwardSquaresThree;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* The icon component for the 'outwardSquaresThree' icon
|
|
9
|
+
*/
|
|
10
|
+
export declare class IconOutwardSquaresThree extends Icon {
|
|
11
|
+
constructor();
|
|
12
|
+
}
|
|
13
|
+
export declare const iconOutwardSquaresThreeTag = "nimble-icon-outward-squares-three";
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
2
|
+
// See generation source in nimble-components/build/generate-icons
|
|
3
|
+
import { outwardSquaresThree16X16 } from '@ni/nimble-tokens/dist/icons/js';
|
|
4
|
+
import { Icon, registerIcon } from '../icon-base';
|
|
5
|
+
/**
|
|
6
|
+
* The icon component for the 'outwardSquaresThree' icon
|
|
7
|
+
*/
|
|
8
|
+
export class IconOutwardSquaresThree extends Icon {
|
|
9
|
+
constructor() {
|
|
10
|
+
super(outwardSquaresThree16X16);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
registerIcon('icon-outward-squares-three', IconOutwardSquaresThree);
|
|
14
|
+
export const iconOutwardSquaresThreeTag = 'nimble-icon-outward-squares-three';
|
|
15
|
+
//# sourceMappingURL=outward-squares-three.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"outward-squares-three.js","sourceRoot":"","sources":["../../../src/icons/outward-squares-three.ts"],"names":[],"mappings":"AAAA,6CAA6C;AAC7C,kEAAkE;AAElE,OAAO,EAAE,wBAAwB,EAAE,MAAM,iCAAiC,CAAC;AAC3E,OAAO,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAQlD;;GAEG;AACH,MAAM,OAAO,uBAAwB,SAAQ,IAAI;IAC7C;QACI,KAAK,CAAC,wBAAwB,CAAC,CAAC;IACpC,CAAC;CACJ;AAED,YAAY,CAAC,4BAA4B,EAAE,uBAAuB,CAAC,CAAC;AACpE,MAAM,CAAC,MAAM,0BAA0B,GAAG,mCAAmC,CAAC","sourcesContent":["// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY\n// See generation source in nimble-components/build/generate-icons\n\nimport { outwardSquaresThree16X16 } from '@ni/nimble-tokens/dist/icons/js';\nimport { Icon, registerIcon } from '../icon-base';\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'nimble-icon-outward-squares-three': IconOutwardSquaresThree;\n }\n}\n\n/**\n * The icon component for the 'outwardSquaresThree' icon\n */\nexport class IconOutwardSquaresThree extends Icon {\n public constructor() {\n super(outwardSquaresThree16X16);\n }\n}\n\nregisterIcon('icon-outward-squares-three', IconOutwardSquaresThree);\nexport const iconOutwardSquaresThreeTag = 'nimble-icon-outward-squares-three';\n"]}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Icon } from '../icon-base';
|
|
2
|
+
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'nimble-icon-square-x': IconSquareX;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* The icon component for the 'squareX' icon
|
|
9
|
+
*/
|
|
10
|
+
export declare class IconSquareX extends Icon {
|
|
11
|
+
constructor();
|
|
12
|
+
}
|
|
13
|
+
export declare const iconSquareXTag = "nimble-icon-square-x";
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
2
|
+
// See generation source in nimble-components/build/generate-icons
|
|
3
|
+
import { squareX16X16 } from '@ni/nimble-tokens/dist/icons/js';
|
|
4
|
+
import { Icon, registerIcon } from '../icon-base';
|
|
5
|
+
/**
|
|
6
|
+
* The icon component for the 'squareX' icon
|
|
7
|
+
*/
|
|
8
|
+
export class IconSquareX extends Icon {
|
|
9
|
+
constructor() {
|
|
10
|
+
super(squareX16X16);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
registerIcon('icon-square-x', IconSquareX);
|
|
14
|
+
export const iconSquareXTag = 'nimble-icon-square-x';
|
|
15
|
+
//# sourceMappingURL=square-x.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"square-x.js","sourceRoot":"","sources":["../../../src/icons/square-x.ts"],"names":[],"mappings":"AAAA,6CAA6C;AAC7C,kEAAkE;AAElE,OAAO,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AAC/D,OAAO,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAQlD;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,IAAI;IACjC;QACI,KAAK,CAAC,YAAY,CAAC,CAAC;IACxB,CAAC;CACJ;AAED,YAAY,CAAC,eAAe,EAAE,WAAW,CAAC,CAAC;AAC3C,MAAM,CAAC,MAAM,cAAc,GAAG,sBAAsB,CAAC","sourcesContent":["// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY\n// See generation source in nimble-components/build/generate-icons\n\nimport { squareX16X16 } from '@ni/nimble-tokens/dist/icons/js';\nimport { Icon, registerIcon } from '../icon-base';\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'nimble-icon-square-x': IconSquareX;\n }\n}\n\n/**\n * The icon component for the 'squareX' icon\n */\nexport class IconSquareX extends Icon {\n public constructor() {\n super(squareX16X16);\n }\n}\n\nregisterIcon('icon-square-x', IconSquareX);\nexport const iconSquareXTag = 'nimble-icon-square-x';\n"]}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Icon } from '../icon-base';
|
|
2
|
+
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'nimble-icon-three-circles-ascending-container': IconThreeCirclesAscendingContainer;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* The icon component for the 'threeCirclesAscendingContainer' icon
|
|
9
|
+
*/
|
|
10
|
+
export declare class IconThreeCirclesAscendingContainer extends Icon {
|
|
11
|
+
constructor();
|
|
12
|
+
}
|
|
13
|
+
export declare const iconThreeCirclesAscendingContainerTag = "nimble-icon-three-circles-ascending-container";
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
2
|
+
// See generation source in nimble-components/build/generate-icons
|
|
3
|
+
import { threeCirclesAscendingContainer16X16 } from '@ni/nimble-tokens/dist/icons/js';
|
|
4
|
+
import { Icon, registerIcon } from '../icon-base';
|
|
5
|
+
/**
|
|
6
|
+
* The icon component for the 'threeCirclesAscendingContainer' icon
|
|
7
|
+
*/
|
|
8
|
+
export class IconThreeCirclesAscendingContainer extends Icon {
|
|
9
|
+
constructor() {
|
|
10
|
+
super(threeCirclesAscendingContainer16X16);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
registerIcon('icon-three-circles-ascending-container', IconThreeCirclesAscendingContainer);
|
|
14
|
+
export const iconThreeCirclesAscendingContainerTag = 'nimble-icon-three-circles-ascending-container';
|
|
15
|
+
//# sourceMappingURL=three-circles-ascending-container.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"three-circles-ascending-container.js","sourceRoot":"","sources":["../../../src/icons/three-circles-ascending-container.ts"],"names":[],"mappings":"AAAA,6CAA6C;AAC7C,kEAAkE;AAElE,OAAO,EAAE,mCAAmC,EAAE,MAAM,iCAAiC,CAAC;AACtF,OAAO,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAQlD;;GAEG;AACH,MAAM,OAAO,kCAAmC,SAAQ,IAAI;IACxD;QACI,KAAK,CAAC,mCAAmC,CAAC,CAAC;IAC/C,CAAC;CACJ;AAED,YAAY,CAAC,wCAAwC,EAAE,kCAAkC,CAAC,CAAC;AAC3F,MAAM,CAAC,MAAM,qCAAqC,GAAG,+CAA+C,CAAC","sourcesContent":["// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY\n// See generation source in nimble-components/build/generate-icons\n\nimport { threeCirclesAscendingContainer16X16 } from '@ni/nimble-tokens/dist/icons/js';\nimport { Icon, registerIcon } from '../icon-base';\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'nimble-icon-three-circles-ascending-container': IconThreeCirclesAscendingContainer;\n }\n}\n\n/**\n * The icon component for the 'threeCirclesAscendingContainer' icon\n */\nexport class IconThreeCirclesAscendingContainer extends Icon {\n public constructor() {\n super(threeCirclesAscendingContainer16X16);\n }\n}\n\nregisterIcon('icon-three-circles-ascending-container', IconThreeCirclesAscendingContainer);\nexport const iconThreeCirclesAscendingContainerTag = 'nimble-icon-three-circles-ascending-container';\n"]}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Remote } from 'comlink';
|
|
2
|
+
import type { MatrixRenderer } from '../../../build/generate-workers/dist/esm/source/matrix-renderer';
|
|
3
|
+
/**
|
|
4
|
+
* Asynchronously creates and returns a Remote<MatrixRenderer> instance.
|
|
5
|
+
* This function simplifies the process of creating and accessing MatrixRenderer instances.
|
|
6
|
+
*/
|
|
7
|
+
export declare const createMatrixRenderer: () => Promise<{
|
|
8
|
+
matrixRenderer: Remote<MatrixRenderer>;
|
|
9
|
+
terminate: () => void;
|
|
10
|
+
}>;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { wrap } from 'comlink';
|
|
2
|
+
import { workerCode } from '../workers/matrix-renderer';
|
|
3
|
+
let url;
|
|
4
|
+
/**
|
|
5
|
+
* Asynchronously creates and returns a Remote<MatrixRenderer> instance.
|
|
6
|
+
* This function simplifies the process of creating and accessing MatrixRenderer instances.
|
|
7
|
+
*/
|
|
8
|
+
export const createMatrixRenderer = async () => {
|
|
9
|
+
if (url === undefined) {
|
|
10
|
+
const blob = new Blob([workerCode], { type: 'text/javascript' });
|
|
11
|
+
url = URL.createObjectURL(blob);
|
|
12
|
+
}
|
|
13
|
+
const worker = new Worker(url);
|
|
14
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
15
|
+
const RemoteMatrixRenderer = wrap(worker);
|
|
16
|
+
const matrixRenderer = await new RemoteMatrixRenderer();
|
|
17
|
+
const terminate = () => worker.terminate();
|
|
18
|
+
return {
|
|
19
|
+
matrixRenderer,
|
|
20
|
+
terminate
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
//# sourceMappingURL=create-matrix-renderer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-matrix-renderer.js","sourceRoot":"","sources":["../../../../src/wafer-map/modules/create-matrix-renderer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAU,MAAM,SAAS,CAAC;AACvC,OAAO,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAGxD,IAAI,GAAW,CAAC;AAEhB;;;GAGG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAAG,KAAK,IAGtC,EAAE;IACD,IAAI,GAAG,KAAK,SAAS,EAAE;QACnB,MAAM,IAAI,GAAG,IAAI,IAAI,CAAC,CAAC,UAAU,CAAC,EAAE,EAAE,IAAI,EAAE,iBAAiB,EAAE,CAAC,CAAC;QACjE,GAAG,GAAG,GAAG,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;KACnC;IACD,MAAM,MAAM,GAAG,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC;IAC/B,gEAAgE;IAChE,MAAM,oBAAoB,GAAG,IAAI,CAA0B,MAAM,CAAC,CAAC;IACnE,MAAM,cAAc,GAAG,MAAM,IAAI,oBAAoB,EAAE,CAAC;IACxD,MAAM,SAAS,GAAG,GAAS,EAAE,CAAC,MAAM,CAAC,SAAS,EAAE,CAAC;IACjD,OAAO;QACH,cAAc;QACd,SAAS;KACZ,CAAC;AACN,CAAC,CAAC","sourcesContent":["import { wrap, Remote } from 'comlink';\nimport { workerCode } from '../workers/matrix-renderer';\nimport type { MatrixRenderer } from '../../../build/generate-workers/dist/esm/source/matrix-renderer';\n\nlet url: string;\n\n/**\n * Asynchronously creates and returns a Remote<MatrixRenderer> instance.\n * This function simplifies the process of creating and accessing MatrixRenderer instances.\n */\nexport const createMatrixRenderer = async (): Promise<{\n matrixRenderer: Remote<MatrixRenderer>,\n terminate: () => void\n}> => {\n if (url === undefined) {\n const blob = new Blob([workerCode], { type: 'text/javascript' });\n url = URL.createObjectURL(blob);\n }\n const worker = new Worker(url);\n // eslint-disable-next-line @typescript-eslint/naming-convention\n const RemoteMatrixRenderer = wrap<new() => MatrixRenderer>(worker);\n const matrixRenderer = await new RemoteMatrixRenderer();\n const terminate = (): void => worker.terminate();\n return {\n matrixRenderer,\n terminate\n };\n};\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const workerCode = "var MatrixRenderer = (function (exports) {\n 'use strict';\n\n /**\n * @license\n * Copyright 2019 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\n const proxyMarker = Symbol(\"Comlink.proxy\");\n const createEndpoint = Symbol(\"Comlink.endpoint\");\n const releaseProxy = Symbol(\"Comlink.releaseProxy\");\n const finalizer = Symbol(\"Comlink.finalizer\");\n const throwMarker = Symbol(\"Comlink.thrown\");\n const isObject = (val) => (typeof val === \"object\" && val !== null) || typeof val === \"function\";\n /**\n * Internal transfer handle to handle objects marked to proxy.\n */\n const proxyTransferHandler = {\n canHandle: (val) => isObject(val) && val[proxyMarker],\n serialize(obj) {\n const { port1, port2 } = new MessageChannel();\n expose(obj, port1);\n return [port2, [port2]];\n },\n deserialize(port) {\n port.start();\n return wrap(port);\n },\n };\n /**\n * Internal transfer handler to handle thrown exceptions.\n */\n const throwTransferHandler = {\n canHandle: (value) => isObject(value) && throwMarker in value,\n serialize({ value }) {\n let serialized;\n if (value instanceof Error) {\n serialized = {\n isError: true,\n value: {\n message: value.message,\n name: value.name,\n stack: value.stack,\n },\n };\n }\n else {\n serialized = { isError: false, value };\n }\n return [serialized, []];\n },\n deserialize(serialized) {\n if (serialized.isError) {\n throw Object.assign(new Error(serialized.value.message), serialized.value);\n }\n throw serialized.value;\n },\n };\n /**\n * Allows customizing the serialization of certain values.\n */\n const transferHandlers = new Map([\n [\"proxy\", proxyTransferHandler],\n [\"throw\", throwTransferHandler],\n ]);\n function isAllowedOrigin(allowedOrigins, origin) {\n for (const allowedOrigin of allowedOrigins) {\n if (origin === allowedOrigin || allowedOrigin === \"*\") {\n return true;\n }\n if (allowedOrigin instanceof RegExp && allowedOrigin.test(origin)) {\n return true;\n }\n }\n return false;\n }\n function expose(obj, ep = globalThis, allowedOrigins = [\"*\"]) {\n ep.addEventListener(\"message\", function callback(ev) {\n if (!ev || !ev.data) {\n return;\n }\n if (!isAllowedOrigin(allowedOrigins, ev.origin)) {\n console.warn(`Invalid origin '${ev.origin}' for comlink proxy`);\n return;\n }\n const { id, type, path } = Object.assign({ path: [] }, ev.data);\n const argumentList = (ev.data.argumentList || []).map(fromWireValue);\n let returnValue;\n try {\n const parent = path.slice(0, -1).reduce((obj, prop) => obj[prop], obj);\n const rawValue = path.reduce((obj, prop) => obj[prop], obj);\n switch (type) {\n case \"GET\" /* MessageType.GET */:\n {\n returnValue = rawValue;\n }\n break;\n case \"SET\" /* MessageType.SET */:\n {\n parent[path.slice(-1)[0]] = fromWireValue(ev.data.value);\n returnValue = true;\n }\n break;\n case \"APPLY\" /* MessageType.APPLY */:\n {\n returnValue = rawValue.apply(parent, argumentList);\n }\n break;\n case \"CONSTRUCT\" /* MessageType.CONSTRUCT */:\n {\n const value = new rawValue(...argumentList);\n returnValue = proxy(value);\n }\n break;\n case \"ENDPOINT\" /* MessageType.ENDPOINT */:\n {\n const { port1, port2 } = new MessageChannel();\n expose(obj, port2);\n returnValue = transfer(port1, [port1]);\n }\n break;\n case \"RELEASE\" /* MessageType.RELEASE */:\n {\n returnValue = undefined;\n }\n break;\n default:\n return;\n }\n }\n catch (value) {\n returnValue = { value, [throwMarker]: 0 };\n }\n Promise.resolve(returnValue)\n .catch((value) => {\n return { value, [throwMarker]: 0 };\n })\n .then((returnValue) => {\n const [wireValue, transferables] = toWireValue(returnValue);\n ep.postMessage(Object.assign(Object.assign({}, wireValue), { id }), transferables);\n if (type === \"RELEASE\" /* MessageType.RELEASE */) {\n // detach and deactive after sending release response above.\n ep.removeEventListener(\"message\", callback);\n closeEndPoint(ep);\n if (finalizer in obj && typeof obj[finalizer] === \"function\") {\n obj[finalizer]();\n }\n }\n })\n .catch((error) => {\n // Send Serialization Error To Caller\n const [wireValue, transferables] = toWireValue({\n value: new TypeError(\"Unserializable return value\"),\n [throwMarker]: 0,\n });\n ep.postMessage(Object.assign(Object.assign({}, wireValue), { id }), transferables);\n });\n });\n if (ep.start) {\n ep.start();\n }\n }\n function isMessagePort(endpoint) {\n return endpoint.constructor.name === \"MessagePort\";\n }\n function closeEndPoint(endpoint) {\n if (isMessagePort(endpoint))\n endpoint.close();\n }\n function wrap(ep, target) {\n return createProxy(ep, [], target);\n }\n function throwIfProxyReleased(isReleased) {\n if (isReleased) {\n throw new Error(\"Proxy has been released and is not useable\");\n }\n }\n function releaseEndpoint(ep) {\n return requestResponseMessage(ep, {\n type: \"RELEASE\" /* MessageType.RELEASE */,\n }).then(() => {\n closeEndPoint(ep);\n });\n }\n const proxyCounter = new WeakMap();\n const proxyFinalizers = \"FinalizationRegistry\" in globalThis &&\n new FinalizationRegistry((ep) => {\n const newCount = (proxyCounter.get(ep) || 0) - 1;\n proxyCounter.set(ep, newCount);\n if (newCount === 0) {\n releaseEndpoint(ep);\n }\n });\n function registerProxy(proxy, ep) {\n const newCount = (proxyCounter.get(ep) || 0) + 1;\n proxyCounter.set(ep, newCount);\n if (proxyFinalizers) {\n proxyFinalizers.register(proxy, ep, proxy);\n }\n }\n function unregisterProxy(proxy) {\n if (proxyFinalizers) {\n proxyFinalizers.unregister(proxy);\n }\n }\n function createProxy(ep, path = [], target = function () { }) {\n let isProxyReleased = false;\n const proxy = new Proxy(target, {\n get(_target, prop) {\n throwIfProxyReleased(isProxyReleased);\n if (prop === releaseProxy) {\n return () => {\n unregisterProxy(proxy);\n releaseEndpoint(ep);\n isProxyReleased = true;\n };\n }\n if (prop === \"then\") {\n if (path.length === 0) {\n return { then: () => proxy };\n }\n const r = requestResponseMessage(ep, {\n type: \"GET\" /* MessageType.GET */,\n path: path.map((p) => p.toString()),\n }).then(fromWireValue);\n return r.then.bind(r);\n }\n return createProxy(ep, [...path, prop]);\n },\n set(_target, prop, rawValue) {\n throwIfProxyReleased(isProxyReleased);\n // FIXME: ES6 Proxy Handler `set` methods are supposed to return a\n // boolean. To show good will, we return true asynchronously \u00AF\\_(\u30C4)_/\u00AF\n const [value, transferables] = toWireValue(rawValue);\n return requestResponseMessage(ep, {\n type: \"SET\" /* MessageType.SET */,\n path: [...path, prop].map((p) => p.toString()),\n value,\n }, transferables).then(fromWireValue);\n },\n apply(_target, _thisArg, rawArgumentList) {\n throwIfProxyReleased(isProxyReleased);\n const last = path[path.length - 1];\n if (last === createEndpoint) {\n return requestResponseMessage(ep, {\n type: \"ENDPOINT\" /* MessageType.ENDPOINT */,\n }).then(fromWireValue);\n }\n // We just pretend that `bind()` didn\u2019t happen.\n if (last === \"bind\") {\n return createProxy(ep, path.slice(0, -1));\n }\n const [argumentList, transferables] = processArguments(rawArgumentList);\n return requestResponseMessage(ep, {\n type: \"APPLY\" /* MessageType.APPLY */,\n path: path.map((p) => p.toString()),\n argumentList,\n }, transferables).then(fromWireValue);\n },\n construct(_target, rawArgumentList) {\n throwIfProxyReleased(isProxyReleased);\n const [argumentList, transferables] = processArguments(rawArgumentList);\n return requestResponseMessage(ep, {\n type: \"CONSTRUCT\" /* MessageType.CONSTRUCT */,\n path: path.map((p) => p.toString()),\n argumentList,\n }, transferables).then(fromWireValue);\n },\n });\n registerProxy(proxy, ep);\n return proxy;\n }\n function myFlat(arr) {\n return Array.prototype.concat.apply([], arr);\n }\n function processArguments(argumentList) {\n const processed = argumentList.map(toWireValue);\n return [processed.map((v) => v[0]), myFlat(processed.map((v) => v[1]))];\n }\n const transferCache = new WeakMap();\n function transfer(obj, transfers) {\n transferCache.set(obj, transfers);\n return obj;\n }\n function proxy(obj) {\n return Object.assign(obj, { [proxyMarker]: true });\n }\n function toWireValue(value) {\n for (const [name, handler] of transferHandlers) {\n if (handler.canHandle(value)) {\n const [serializedValue, transferables] = handler.serialize(value);\n return [\n {\n type: \"HANDLER\" /* WireValueType.HANDLER */,\n name,\n value: serializedValue,\n },\n transferables,\n ];\n }\n }\n return [\n {\n type: \"RAW\" /* WireValueType.RAW */,\n value,\n },\n transferCache.get(value) || [],\n ];\n }\n function fromWireValue(value) {\n switch (value.type) {\n case \"HANDLER\" /* WireValueType.HANDLER */:\n return transferHandlers.get(value.name).deserialize(value.value);\n case \"RAW\" /* WireValueType.RAW */:\n return value.value;\n }\n }\n function requestResponseMessage(ep, msg, transfers) {\n return new Promise((resolve) => {\n const id = generateUUID();\n ep.addEventListener(\"message\", function l(ev) {\n if (!ev.data || !ev.data.id || ev.data.id !== id) {\n return;\n }\n ep.removeEventListener(\"message\", l);\n resolve(ev.data);\n });\n if (ep.start) {\n ep.start();\n }\n ep.postMessage(Object.assign({ id }, msg), transfers);\n });\n }\n function generateUUID() {\n return new Array(4)\n .fill(0)\n .map(() => Math.floor(Math.random() * Number.MAX_SAFE_INTEGER).toString(16))\n .join(\"-\");\n }\n\n /**\n * MatrixRenderer class is meant to be used within a Web Worker context,\n * using Comlink to facilitate communication between the main thread and the worker.\n * The MatrixRenderer class manages a matrix of dies, once an instance of MatrixRenderer is created,\n * it is exposed to the main thread using Comlink's `expose` method.\n * This setup is used in the wafer-map component to perform heavy computational duties\n */\n class MatrixRenderer {\n constructor() {\n this.dieMatrix = Uint8Array.from([]);\n }\n emptyMatrix() {\n this.dieMatrix = Uint8Array.from([]);\n }\n updateMatrix(data) {\n this.dieMatrix = Uint8Array.from(data);\n }\n }\n expose(MatrixRenderer);\n\n exports.MatrixRenderer = MatrixRenderer;\n\n return exports;\n\n})({});\n";
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
// eslint-disable-next-line no-template-curly-in-string
|
|
2
|
+
export const workerCode = "var MatrixRenderer = (function (exports) {\n 'use strict';\n\n /**\n * @license\n * Copyright 2019 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\n const proxyMarker = Symbol(\"Comlink.proxy\");\n const createEndpoint = Symbol(\"Comlink.endpoint\");\n const releaseProxy = Symbol(\"Comlink.releaseProxy\");\n const finalizer = Symbol(\"Comlink.finalizer\");\n const throwMarker = Symbol(\"Comlink.thrown\");\n const isObject = (val) => (typeof val === \"object\" && val !== null) || typeof val === \"function\";\n /**\n * Internal transfer handle to handle objects marked to proxy.\n */\n const proxyTransferHandler = {\n canHandle: (val) => isObject(val) && val[proxyMarker],\n serialize(obj) {\n const { port1, port2 } = new MessageChannel();\n expose(obj, port1);\n return [port2, [port2]];\n },\n deserialize(port) {\n port.start();\n return wrap(port);\n },\n };\n /**\n * Internal transfer handler to handle thrown exceptions.\n */\n const throwTransferHandler = {\n canHandle: (value) => isObject(value) && throwMarker in value,\n serialize({ value }) {\n let serialized;\n if (value instanceof Error) {\n serialized = {\n isError: true,\n value: {\n message: value.message,\n name: value.name,\n stack: value.stack,\n },\n };\n }\n else {\n serialized = { isError: false, value };\n }\n return [serialized, []];\n },\n deserialize(serialized) {\n if (serialized.isError) {\n throw Object.assign(new Error(serialized.value.message), serialized.value);\n }\n throw serialized.value;\n },\n };\n /**\n * Allows customizing the serialization of certain values.\n */\n const transferHandlers = new Map([\n [\"proxy\", proxyTransferHandler],\n [\"throw\", throwTransferHandler],\n ]);\n function isAllowedOrigin(allowedOrigins, origin) {\n for (const allowedOrigin of allowedOrigins) {\n if (origin === allowedOrigin || allowedOrigin === \"*\") {\n return true;\n }\n if (allowedOrigin instanceof RegExp && allowedOrigin.test(origin)) {\n return true;\n }\n }\n return false;\n }\n function expose(obj, ep = globalThis, allowedOrigins = [\"*\"]) {\n ep.addEventListener(\"message\", function callback(ev) {\n if (!ev || !ev.data) {\n return;\n }\n if (!isAllowedOrigin(allowedOrigins, ev.origin)) {\n console.warn(`Invalid origin '${ev.origin}' for comlink proxy`);\n return;\n }\n const { id, type, path } = Object.assign({ path: [] }, ev.data);\n const argumentList = (ev.data.argumentList || []).map(fromWireValue);\n let returnValue;\n try {\n const parent = path.slice(0, -1).reduce((obj, prop) => obj[prop], obj);\n const rawValue = path.reduce((obj, prop) => obj[prop], obj);\n switch (type) {\n case \"GET\" /* MessageType.GET */:\n {\n returnValue = rawValue;\n }\n break;\n case \"SET\" /* MessageType.SET */:\n {\n parent[path.slice(-1)[0]] = fromWireValue(ev.data.value);\n returnValue = true;\n }\n break;\n case \"APPLY\" /* MessageType.APPLY */:\n {\n returnValue = rawValue.apply(parent, argumentList);\n }\n break;\n case \"CONSTRUCT\" /* MessageType.CONSTRUCT */:\n {\n const value = new rawValue(...argumentList);\n returnValue = proxy(value);\n }\n break;\n case \"ENDPOINT\" /* MessageType.ENDPOINT */:\n {\n const { port1, port2 } = new MessageChannel();\n expose(obj, port2);\n returnValue = transfer(port1, [port1]);\n }\n break;\n case \"RELEASE\" /* MessageType.RELEASE */:\n {\n returnValue = undefined;\n }\n break;\n default:\n return;\n }\n }\n catch (value) {\n returnValue = { value, [throwMarker]: 0 };\n }\n Promise.resolve(returnValue)\n .catch((value) => {\n return { value, [throwMarker]: 0 };\n })\n .then((returnValue) => {\n const [wireValue, transferables] = toWireValue(returnValue);\n ep.postMessage(Object.assign(Object.assign({}, wireValue), { id }), transferables);\n if (type === \"RELEASE\" /* MessageType.RELEASE */) {\n // detach and deactive after sending release response above.\n ep.removeEventListener(\"message\", callback);\n closeEndPoint(ep);\n if (finalizer in obj && typeof obj[finalizer] === \"function\") {\n obj[finalizer]();\n }\n }\n })\n .catch((error) => {\n // Send Serialization Error To Caller\n const [wireValue, transferables] = toWireValue({\n value: new TypeError(\"Unserializable return value\"),\n [throwMarker]: 0,\n });\n ep.postMessage(Object.assign(Object.assign({}, wireValue), { id }), transferables);\n });\n });\n if (ep.start) {\n ep.start();\n }\n }\n function isMessagePort(endpoint) {\n return endpoint.constructor.name === \"MessagePort\";\n }\n function closeEndPoint(endpoint) {\n if (isMessagePort(endpoint))\n endpoint.close();\n }\n function wrap(ep, target) {\n return createProxy(ep, [], target);\n }\n function throwIfProxyReleased(isReleased) {\n if (isReleased) {\n throw new Error(\"Proxy has been released and is not useable\");\n }\n }\n function releaseEndpoint(ep) {\n return requestResponseMessage(ep, {\n type: \"RELEASE\" /* MessageType.RELEASE */,\n }).then(() => {\n closeEndPoint(ep);\n });\n }\n const proxyCounter = new WeakMap();\n const proxyFinalizers = \"FinalizationRegistry\" in globalThis &&\n new FinalizationRegistry((ep) => {\n const newCount = (proxyCounter.get(ep) || 0) - 1;\n proxyCounter.set(ep, newCount);\n if (newCount === 0) {\n releaseEndpoint(ep);\n }\n });\n function registerProxy(proxy, ep) {\n const newCount = (proxyCounter.get(ep) || 0) + 1;\n proxyCounter.set(ep, newCount);\n if (proxyFinalizers) {\n proxyFinalizers.register(proxy, ep, proxy);\n }\n }\n function unregisterProxy(proxy) {\n if (proxyFinalizers) {\n proxyFinalizers.unregister(proxy);\n }\n }\n function createProxy(ep, path = [], target = function () { }) {\n let isProxyReleased = false;\n const proxy = new Proxy(target, {\n get(_target, prop) {\n throwIfProxyReleased(isProxyReleased);\n if (prop === releaseProxy) {\n return () => {\n unregisterProxy(proxy);\n releaseEndpoint(ep);\n isProxyReleased = true;\n };\n }\n if (prop === \"then\") {\n if (path.length === 0) {\n return { then: () => proxy };\n }\n const r = requestResponseMessage(ep, {\n type: \"GET\" /* MessageType.GET */,\n path: path.map((p) => p.toString()),\n }).then(fromWireValue);\n return r.then.bind(r);\n }\n return createProxy(ep, [...path, prop]);\n },\n set(_target, prop, rawValue) {\n throwIfProxyReleased(isProxyReleased);\n // FIXME: ES6 Proxy Handler `set` methods are supposed to return a\n // boolean. To show good will, we return true asynchronously ¯\\_(ツ)_/¯\n const [value, transferables] = toWireValue(rawValue);\n return requestResponseMessage(ep, {\n type: \"SET\" /* MessageType.SET */,\n path: [...path, prop].map((p) => p.toString()),\n value,\n }, transferables).then(fromWireValue);\n },\n apply(_target, _thisArg, rawArgumentList) {\n throwIfProxyReleased(isProxyReleased);\n const last = path[path.length - 1];\n if (last === createEndpoint) {\n return requestResponseMessage(ep, {\n type: \"ENDPOINT\" /* MessageType.ENDPOINT */,\n }).then(fromWireValue);\n }\n // We just pretend that `bind()` didn’t happen.\n if (last === \"bind\") {\n return createProxy(ep, path.slice(0, -1));\n }\n const [argumentList, transferables] = processArguments(rawArgumentList);\n return requestResponseMessage(ep, {\n type: \"APPLY\" /* MessageType.APPLY */,\n path: path.map((p) => p.toString()),\n argumentList,\n }, transferables).then(fromWireValue);\n },\n construct(_target, rawArgumentList) {\n throwIfProxyReleased(isProxyReleased);\n const [argumentList, transferables] = processArguments(rawArgumentList);\n return requestResponseMessage(ep, {\n type: \"CONSTRUCT\" /* MessageType.CONSTRUCT */,\n path: path.map((p) => p.toString()),\n argumentList,\n }, transferables).then(fromWireValue);\n },\n });\n registerProxy(proxy, ep);\n return proxy;\n }\n function myFlat(arr) {\n return Array.prototype.concat.apply([], arr);\n }\n function processArguments(argumentList) {\n const processed = argumentList.map(toWireValue);\n return [processed.map((v) => v[0]), myFlat(processed.map((v) => v[1]))];\n }\n const transferCache = new WeakMap();\n function transfer(obj, transfers) {\n transferCache.set(obj, transfers);\n return obj;\n }\n function proxy(obj) {\n return Object.assign(obj, { [proxyMarker]: true });\n }\n function toWireValue(value) {\n for (const [name, handler] of transferHandlers) {\n if (handler.canHandle(value)) {\n const [serializedValue, transferables] = handler.serialize(value);\n return [\n {\n type: \"HANDLER\" /* WireValueType.HANDLER */,\n name,\n value: serializedValue,\n },\n transferables,\n ];\n }\n }\n return [\n {\n type: \"RAW\" /* WireValueType.RAW */,\n value,\n },\n transferCache.get(value) || [],\n ];\n }\n function fromWireValue(value) {\n switch (value.type) {\n case \"HANDLER\" /* WireValueType.HANDLER */:\n return transferHandlers.get(value.name).deserialize(value.value);\n case \"RAW\" /* WireValueType.RAW */:\n return value.value;\n }\n }\n function requestResponseMessage(ep, msg, transfers) {\n return new Promise((resolve) => {\n const id = generateUUID();\n ep.addEventListener(\"message\", function l(ev) {\n if (!ev.data || !ev.data.id || ev.data.id !== id) {\n return;\n }\n ep.removeEventListener(\"message\", l);\n resolve(ev.data);\n });\n if (ep.start) {\n ep.start();\n }\n ep.postMessage(Object.assign({ id }, msg), transfers);\n });\n }\n function generateUUID() {\n return new Array(4)\n .fill(0)\n .map(() => Math.floor(Math.random() * Number.MAX_SAFE_INTEGER).toString(16))\n .join(\"-\");\n }\n\n /**\n * MatrixRenderer class is meant to be used within a Web Worker context,\n * using Comlink to facilitate communication between the main thread and the worker.\n * The MatrixRenderer class manages a matrix of dies, once an instance of MatrixRenderer is created,\n * it is exposed to the main thread using Comlink's `expose` method.\n * This setup is used in the wafer-map component to perform heavy computational duties\n */\n class MatrixRenderer {\n constructor() {\n this.dieMatrix = Uint8Array.from([]);\n }\n emptyMatrix() {\n this.dieMatrix = Uint8Array.from([]);\n }\n updateMatrix(data) {\n this.dieMatrix = Uint8Array.from(data);\n }\n }\n expose(MatrixRenderer);\n\n exports.MatrixRenderer = MatrixRenderer;\n\n return exports;\n\n})({});\n";
|
|
3
|
+
//# sourceMappingURL=matrix-renderer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"matrix-renderer.js","sourceRoot":"","sources":["../../../../src/wafer-map/workers/matrix-renderer.ts"],"names":[],"mappings":"AAAA,uDAAuD;AACvD,MAAM,CAAC,MAAM,UAAU,GAAG,yhcAAyhc,CAAC","sourcesContent":["// eslint-disable-next-line no-template-curly-in-string\nexport const workerCode = \"var MatrixRenderer = (function (exports) {\\n 'use strict';\\n\\n /**\\n * @license\\n * Copyright 2019 Google LLC\\n * SPDX-License-Identifier: Apache-2.0\\n */\\n const proxyMarker = Symbol(\\\"Comlink.proxy\\\");\\n const createEndpoint = Symbol(\\\"Comlink.endpoint\\\");\\n const releaseProxy = Symbol(\\\"Comlink.releaseProxy\\\");\\n const finalizer = Symbol(\\\"Comlink.finalizer\\\");\\n const throwMarker = Symbol(\\\"Comlink.thrown\\\");\\n const isObject = (val) => (typeof val === \\\"object\\\" && val !== null) || typeof val === \\\"function\\\";\\n /**\\n * Internal transfer handle to handle objects marked to proxy.\\n */\\n const proxyTransferHandler = {\\n canHandle: (val) => isObject(val) && val[proxyMarker],\\n serialize(obj) {\\n const { port1, port2 } = new MessageChannel();\\n expose(obj, port1);\\n return [port2, [port2]];\\n },\\n deserialize(port) {\\n port.start();\\n return wrap(port);\\n },\\n };\\n /**\\n * Internal transfer handler to handle thrown exceptions.\\n */\\n const throwTransferHandler = {\\n canHandle: (value) => isObject(value) && throwMarker in value,\\n serialize({ value }) {\\n let serialized;\\n if (value instanceof Error) {\\n serialized = {\\n isError: true,\\n value: {\\n message: value.message,\\n name: value.name,\\n stack: value.stack,\\n },\\n };\\n }\\n else {\\n serialized = { isError: false, value };\\n }\\n return [serialized, []];\\n },\\n deserialize(serialized) {\\n if (serialized.isError) {\\n throw Object.assign(new Error(serialized.value.message), serialized.value);\\n }\\n throw serialized.value;\\n },\\n };\\n /**\\n * Allows customizing the serialization of certain values.\\n */\\n const transferHandlers = new Map([\\n [\\\"proxy\\\", proxyTransferHandler],\\n [\\\"throw\\\", throwTransferHandler],\\n ]);\\n function isAllowedOrigin(allowedOrigins, origin) {\\n for (const allowedOrigin of allowedOrigins) {\\n if (origin === allowedOrigin || allowedOrigin === \\\"*\\\") {\\n return true;\\n }\\n if (allowedOrigin instanceof RegExp && allowedOrigin.test(origin)) {\\n return true;\\n }\\n }\\n return false;\\n }\\n function expose(obj, ep = globalThis, allowedOrigins = [\\\"*\\\"]) {\\n ep.addEventListener(\\\"message\\\", function callback(ev) {\\n if (!ev || !ev.data) {\\n return;\\n }\\n if (!isAllowedOrigin(allowedOrigins, ev.origin)) {\\n console.warn(`Invalid origin '${ev.origin}' for comlink proxy`);\\n return;\\n }\\n const { id, type, path } = Object.assign({ path: [] }, ev.data);\\n const argumentList = (ev.data.argumentList || []).map(fromWireValue);\\n let returnValue;\\n try {\\n const parent = path.slice(0, -1).reduce((obj, prop) => obj[prop], obj);\\n const rawValue = path.reduce((obj, prop) => obj[prop], obj);\\n switch (type) {\\n case \\\"GET\\\" /* MessageType.GET */:\\n {\\n returnValue = rawValue;\\n }\\n break;\\n case \\\"SET\\\" /* MessageType.SET */:\\n {\\n parent[path.slice(-1)[0]] = fromWireValue(ev.data.value);\\n returnValue = true;\\n }\\n break;\\n case \\\"APPLY\\\" /* MessageType.APPLY */:\\n {\\n returnValue = rawValue.apply(parent, argumentList);\\n }\\n break;\\n case \\\"CONSTRUCT\\\" /* MessageType.CONSTRUCT */:\\n {\\n const value = new rawValue(...argumentList);\\n returnValue = proxy(value);\\n }\\n break;\\n case \\\"ENDPOINT\\\" /* MessageType.ENDPOINT */:\\n {\\n const { port1, port2 } = new MessageChannel();\\n expose(obj, port2);\\n returnValue = transfer(port1, [port1]);\\n }\\n break;\\n case \\\"RELEASE\\\" /* MessageType.RELEASE */:\\n {\\n returnValue = undefined;\\n }\\n break;\\n default:\\n return;\\n }\\n }\\n catch (value) {\\n returnValue = { value, [throwMarker]: 0 };\\n }\\n Promise.resolve(returnValue)\\n .catch((value) => {\\n return { value, [throwMarker]: 0 };\\n })\\n .then((returnValue) => {\\n const [wireValue, transferables] = toWireValue(returnValue);\\n ep.postMessage(Object.assign(Object.assign({}, wireValue), { id }), transferables);\\n if (type === \\\"RELEASE\\\" /* MessageType.RELEASE */) {\\n // detach and deactive after sending release response above.\\n ep.removeEventListener(\\\"message\\\", callback);\\n closeEndPoint(ep);\\n if (finalizer in obj && typeof obj[finalizer] === \\\"function\\\") {\\n obj[finalizer]();\\n }\\n }\\n })\\n .catch((error) => {\\n // Send Serialization Error To Caller\\n const [wireValue, transferables] = toWireValue({\\n value: new TypeError(\\\"Unserializable return value\\\"),\\n [throwMarker]: 0,\\n });\\n ep.postMessage(Object.assign(Object.assign({}, wireValue), { id }), transferables);\\n });\\n });\\n if (ep.start) {\\n ep.start();\\n }\\n }\\n function isMessagePort(endpoint) {\\n return endpoint.constructor.name === \\\"MessagePort\\\";\\n }\\n function closeEndPoint(endpoint) {\\n if (isMessagePort(endpoint))\\n endpoint.close();\\n }\\n function wrap(ep, target) {\\n return createProxy(ep, [], target);\\n }\\n function throwIfProxyReleased(isReleased) {\\n if (isReleased) {\\n throw new Error(\\\"Proxy has been released and is not useable\\\");\\n }\\n }\\n function releaseEndpoint(ep) {\\n return requestResponseMessage(ep, {\\n type: \\\"RELEASE\\\" /* MessageType.RELEASE */,\\n }).then(() => {\\n closeEndPoint(ep);\\n });\\n }\\n const proxyCounter = new WeakMap();\\n const proxyFinalizers = \\\"FinalizationRegistry\\\" in globalThis &&\\n new FinalizationRegistry((ep) => {\\n const newCount = (proxyCounter.get(ep) || 0) - 1;\\n proxyCounter.set(ep, newCount);\\n if (newCount === 0) {\\n releaseEndpoint(ep);\\n }\\n });\\n function registerProxy(proxy, ep) {\\n const newCount = (proxyCounter.get(ep) || 0) + 1;\\n proxyCounter.set(ep, newCount);\\n if (proxyFinalizers) {\\n proxyFinalizers.register(proxy, ep, proxy);\\n }\\n }\\n function unregisterProxy(proxy) {\\n if (proxyFinalizers) {\\n proxyFinalizers.unregister(proxy);\\n }\\n }\\n function createProxy(ep, path = [], target = function () { }) {\\n let isProxyReleased = false;\\n const proxy = new Proxy(target, {\\n get(_target, prop) {\\n throwIfProxyReleased(isProxyReleased);\\n if (prop === releaseProxy) {\\n return () => {\\n unregisterProxy(proxy);\\n releaseEndpoint(ep);\\n isProxyReleased = true;\\n };\\n }\\n if (prop === \\\"then\\\") {\\n if (path.length === 0) {\\n return { then: () => proxy };\\n }\\n const r = requestResponseMessage(ep, {\\n type: \\\"GET\\\" /* MessageType.GET */,\\n path: path.map((p) => p.toString()),\\n }).then(fromWireValue);\\n return r.then.bind(r);\\n }\\n return createProxy(ep, [...path, prop]);\\n },\\n set(_target, prop, rawValue) {\\n throwIfProxyReleased(isProxyReleased);\\n // FIXME: ES6 Proxy Handler `set` methods are supposed to return a\\n // boolean. To show good will, we return true asynchronously ¯\\\\_(ツ)_/¯\\n const [value, transferables] = toWireValue(rawValue);\\n return requestResponseMessage(ep, {\\n type: \\\"SET\\\" /* MessageType.SET */,\\n path: [...path, prop].map((p) => p.toString()),\\n value,\\n }, transferables).then(fromWireValue);\\n },\\n apply(_target, _thisArg, rawArgumentList) {\\n throwIfProxyReleased(isProxyReleased);\\n const last = path[path.length - 1];\\n if (last === createEndpoint) {\\n return requestResponseMessage(ep, {\\n type: \\\"ENDPOINT\\\" /* MessageType.ENDPOINT */,\\n }).then(fromWireValue);\\n }\\n // We just pretend that `bind()` didn’t happen.\\n if (last === \\\"bind\\\") {\\n return createProxy(ep, path.slice(0, -1));\\n }\\n const [argumentList, transferables] = processArguments(rawArgumentList);\\n return requestResponseMessage(ep, {\\n type: \\\"APPLY\\\" /* MessageType.APPLY */,\\n path: path.map((p) => p.toString()),\\n argumentList,\\n }, transferables).then(fromWireValue);\\n },\\n construct(_target, rawArgumentList) {\\n throwIfProxyReleased(isProxyReleased);\\n const [argumentList, transferables] = processArguments(rawArgumentList);\\n return requestResponseMessage(ep, {\\n type: \\\"CONSTRUCT\\\" /* MessageType.CONSTRUCT */,\\n path: path.map((p) => p.toString()),\\n argumentList,\\n }, transferables).then(fromWireValue);\\n },\\n });\\n registerProxy(proxy, ep);\\n return proxy;\\n }\\n function myFlat(arr) {\\n return Array.prototype.concat.apply([], arr);\\n }\\n function processArguments(argumentList) {\\n const processed = argumentList.map(toWireValue);\\n return [processed.map((v) => v[0]), myFlat(processed.map((v) => v[1]))];\\n }\\n const transferCache = new WeakMap();\\n function transfer(obj, transfers) {\\n transferCache.set(obj, transfers);\\n return obj;\\n }\\n function proxy(obj) {\\n return Object.assign(obj, { [proxyMarker]: true });\\n }\\n function toWireValue(value) {\\n for (const [name, handler] of transferHandlers) {\\n if (handler.canHandle(value)) {\\n const [serializedValue, transferables] = handler.serialize(value);\\n return [\\n {\\n type: \\\"HANDLER\\\" /* WireValueType.HANDLER */,\\n name,\\n value: serializedValue,\\n },\\n transferables,\\n ];\\n }\\n }\\n return [\\n {\\n type: \\\"RAW\\\" /* WireValueType.RAW */,\\n value,\\n },\\n transferCache.get(value) || [],\\n ];\\n }\\n function fromWireValue(value) {\\n switch (value.type) {\\n case \\\"HANDLER\\\" /* WireValueType.HANDLER */:\\n return transferHandlers.get(value.name).deserialize(value.value);\\n case \\\"RAW\\\" /* WireValueType.RAW */:\\n return value.value;\\n }\\n }\\n function requestResponseMessage(ep, msg, transfers) {\\n return new Promise((resolve) => {\\n const id = generateUUID();\\n ep.addEventListener(\\\"message\\\", function l(ev) {\\n if (!ev.data || !ev.data.id || ev.data.id !== id) {\\n return;\\n }\\n ep.removeEventListener(\\\"message\\\", l);\\n resolve(ev.data);\\n });\\n if (ep.start) {\\n ep.start();\\n }\\n ep.postMessage(Object.assign({ id }, msg), transfers);\\n });\\n }\\n function generateUUID() {\\n return new Array(4)\\n .fill(0)\\n .map(() => Math.floor(Math.random() * Number.MAX_SAFE_INTEGER).toString(16))\\n .join(\\\"-\\\");\\n }\\n\\n /**\\n * MatrixRenderer class is meant to be used within a Web Worker context,\\n * using Comlink to facilitate communication between the main thread and the worker.\\n * The MatrixRenderer class manages a matrix of dies, once an instance of MatrixRenderer is created,\\n * it is exposed to the main thread using Comlink's `expose` method.\\n * This setup is used in the wafer-map component to perform heavy computational duties\\n */\\n class MatrixRenderer {\\n constructor() {\\n this.dieMatrix = Uint8Array.from([]);\\n }\\n emptyMatrix() {\\n this.dieMatrix = Uint8Array.from([]);\\n }\\n updateMatrix(data) {\\n this.dieMatrix = Uint8Array.from(data);\\n }\\n }\\n expose(MatrixRenderer);\\n\\n exports.MatrixRenderer = MatrixRenderer;\\n\\n return exports;\\n\\n})({});\\n\";\n"]}
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ni/nimble-components",
|
|
3
|
-
"version": "21.
|
|
3
|
+
"version": "21.7.1",
|
|
4
4
|
"description": "Styled web components for the NI Nimble Design System",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"build": "npm run generate-icons && npm run build-components && npm run bundle-components && npm run generate-scss && npm run build-storybook",
|
|
6
|
+
"build": "npm run generate-icons && npm run generate-workers && npm run build-components && npm run bundle-components && npm run generate-scss && npm run build-storybook",
|
|
7
7
|
"lint": "npm run eslint && npm run prettier",
|
|
8
8
|
"format": "npm run eslint-fix && npm run prettier-fix",
|
|
9
9
|
"eslint": "eslint .",
|
|
@@ -24,6 +24,10 @@
|
|
|
24
24
|
"generate-scss": "npm run generate-scss:bundle && npm run generate-scss:run",
|
|
25
25
|
"generate-scss:bundle": "rollup --bundleConfigAsCjs --config build/generate-scss/rollup.config.js",
|
|
26
26
|
"generate-scss:run": "node build/generate-scss/dist/index.js",
|
|
27
|
+
"generate-workers": "npm run generate-workers:build && npm run generate-workers:bundle && npm run generate-workers:run",
|
|
28
|
+
"generate-workers:build": "tsc -p build/generate-workers/tsconfig.json",
|
|
29
|
+
"generate-workers:bundle": "rollup --bundleConfigAsCjs --config build/generate-workers/rollup.config.js",
|
|
30
|
+
"generate-workers:run": "node build/generate-workers/dist/esm/index.js",
|
|
27
31
|
"tdd": "npm run build-components && npm run test-chrome",
|
|
28
32
|
"tdd:watch": "npm run build-components:watch & npm run test-chrome:watch",
|
|
29
33
|
"tdd-firefox": "npm run build-components && npm run test-firefox",
|
|
@@ -64,7 +68,7 @@
|
|
|
64
68
|
"@microsoft/fast-element": "^1.12.0",
|
|
65
69
|
"@microsoft/fast-foundation": "2.49.4",
|
|
66
70
|
"@microsoft/fast-web-utilities": "^6.0.0",
|
|
67
|
-
"@ni/nimble-tokens": "^6.
|
|
71
|
+
"@ni/nimble-tokens": "^6.12.0",
|
|
68
72
|
"@tanstack/table-core": "^8.10.7",
|
|
69
73
|
"@tanstack/virtual-core": "^3.0.0-beta.68",
|
|
70
74
|
"@tiptap/core": "^2.2.2",
|
|
@@ -87,6 +91,7 @@
|
|
|
87
91
|
"@types/d3-selection": "^3.0.0",
|
|
88
92
|
"@types/d3-zoom": "^3.0.0",
|
|
89
93
|
"@types/markdown-it": "^13.0.0",
|
|
94
|
+
"comlink": "4.4.1",
|
|
90
95
|
"d3-array": "^3.2.2",
|
|
91
96
|
"d3-random": "^3.0.1",
|
|
92
97
|
"d3-scale": "^4.0.2",
|