@ni/ok-react 0.9.25 → 0.10.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.
@@ -0,0 +1,5 @@
1
+ import { FvCard, fvCardTag } from '@ni/ok-components/dist/esm/fv/card';
2
+ import { FvCardAppearance, FvCardInteractionMode } from '@ni/ok-components/dist/esm/fv/card/types';
3
+ export { fvCardTag };
4
+ export { type FvCard, FvCardAppearance, FvCardInteractionMode };
5
+ export declare const OkFvCard: import("@lit/react").ReactWebComponent<FvCard, {}>;
@@ -0,0 +1,8 @@
1
+ 'use client';
2
+ import { FvCard, fvCardTag } from '@ni/ok-components/dist/esm/fv/card';
3
+ import { FvCardAppearance, FvCardInteractionMode } from '@ni/ok-components/dist/esm/fv/card/types';
4
+ import { wrap } from '../../utilities/react-wrapper';
5
+ export { fvCardTag };
6
+ export { FvCardAppearance, FvCardInteractionMode };
7
+ export const OkFvCard = wrap(FvCard);
8
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/fv/card/index.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,oCAAoC,CAAC;AACvE,OAAO,EACH,gBAAgB,EAChB,qBAAqB,EACxB,MAAM,0CAA0C,CAAC;AAClD,OAAO,EAAE,IAAI,EAAE,MAAM,+BAA+B,CAAC;AAErD,OAAO,EAAE,SAAS,EAAE,CAAC;AACrB,OAAO,EAAe,gBAAgB,EAAE,qBAAqB,EAAE,CAAC;AAChE,MAAM,CAAC,MAAM,QAAQ,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC","sourcesContent":["'use client';\n\nimport { FvCard, fvCardTag } from '@ni/ok-components/dist/esm/fv/card';\nimport {\n FvCardAppearance,\n FvCardInteractionMode\n} from '@ni/ok-components/dist/esm/fv/card/types';\nimport { wrap } from '../../utilities/react-wrapper';\n\nexport { fvCardTag };\nexport { type FvCard, FvCardAppearance, FvCardInteractionMode };\nexport const OkFvCard = wrap(FvCard);"]}
@@ -0,0 +1,12 @@
1
+ import { FvChipSelector, fvChipSelectorTag } from '@ni/ok-components/dist/esm/fv/chip-selector';
2
+ import { type EventName } from '../../utilities/react-wrapper';
3
+ export { fvChipSelectorTag };
4
+ export { type FvChipSelector };
5
+ export declare const OkFvChipSelector: import("@lit/react").ReactWebComponent<FvChipSelector, {
6
+ onChange: EventName<FvChipSelectorChangeEvent>;
7
+ }>;
8
+ export interface FvChipSelectorChangeEvent extends CustomEvent<{
9
+ selectedValues: string[];
10
+ }> {
11
+ target: FvChipSelector;
12
+ }
@@ -0,0 +1,11 @@
1
+ 'use client';
2
+ import { FvChipSelector, fvChipSelectorTag } from '@ni/ok-components/dist/esm/fv/chip-selector';
3
+ import { wrap } from '../../utilities/react-wrapper';
4
+ export { fvChipSelectorTag };
5
+ export {};
6
+ export const OkFvChipSelector = wrap(FvChipSelector, {
7
+ events: {
8
+ onChange: 'change',
9
+ }
10
+ });
11
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/fv/chip-selector/index.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,6CAA6C,CAAC;AAChG,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AAErE,OAAO,EAAE,iBAAiB,EAAE,CAAC;AAC7B,OAAO,EAAuB,CAAC;AAC/B,MAAM,CAAC,MAAM,gBAAgB,GAAG,IAAI,CAAC,cAAc,EAAE;IACjD,MAAM,EAAE;QACJ,QAAQ,EAAE,QAAgD;KAC7D;CACJ,CAAC,CAAC","sourcesContent":["'use client';\n\nimport { FvChipSelector, fvChipSelectorTag } from '@ni/ok-components/dist/esm/fv/chip-selector';\nimport { wrap, type EventName } from '../../utilities/react-wrapper';\n\nexport { fvChipSelectorTag };\nexport { type FvChipSelector };\nexport const OkFvChipSelector = wrap(FvChipSelector, {\n events: {\n onChange: 'change' as EventName<FvChipSelectorChangeEvent>,\n }\n});\nexport interface FvChipSelectorChangeEvent extends CustomEvent<{ selectedValues: string[] }> {\n target: FvChipSelector;\n}"]}
@@ -0,0 +1,5 @@
1
+ import { FvContextHelp, fvContextHelpTag } from '@ni/ok-components/dist/esm/fv/context-help';
2
+ import type { FvContextHelpSeverity } from '@ni/ok-components/dist/esm/fv/context-help/types';
3
+ export { fvContextHelpTag };
4
+ export { type FvContextHelp, type FvContextHelpSeverity };
5
+ export declare const OkFvContextHelp: import("@lit/react").ReactWebComponent<FvContextHelp, {}>;
@@ -0,0 +1,7 @@
1
+ 'use client';
2
+ import { FvContextHelp, fvContextHelpTag } from '@ni/ok-components/dist/esm/fv/context-help';
3
+ import { wrap } from '../../utilities/react-wrapper';
4
+ export { fvContextHelpTag };
5
+ export {};
6
+ export const OkFvContextHelp = wrap(FvContextHelp);
7
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/fv/context-help/index.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,EAAE,aAAa,EAAE,gBAAgB,EAAE,MAAM,4CAA4C,CAAC;AAE7F,OAAO,EAAE,IAAI,EAAE,MAAM,+BAA+B,CAAC;AAErD,OAAO,EAAE,gBAAgB,EAAE,CAAC;AAC5B,OAAO,EAAkD,CAAC;AAC1D,MAAM,CAAC,MAAM,eAAe,GAAG,IAAI,CAAC,aAAa,CAAC,CAAC","sourcesContent":["'use client';\n\nimport { FvContextHelp, fvContextHelpTag } from '@ni/ok-components/dist/esm/fv/context-help';\nimport type { FvContextHelpSeverity } from '@ni/ok-components/dist/esm/fv/context-help/types';\nimport { wrap } from '../../utilities/react-wrapper';\n\nexport { fvContextHelpTag };\nexport { type FvContextHelp, type FvContextHelpSeverity };\nexport const OkFvContextHelp = wrap(FvContextHelp);"]}
@@ -0,0 +1,10 @@
1
+ import { FvMasterDetailList, fvMasterDetailListTag, type FvMasterDetailListChangeDetail } from '@ni/ok-components/dist/esm/fv/master-detail-list';
2
+ import { type EventName } from '../../utilities/react-wrapper';
3
+ export { fvMasterDetailListTag };
4
+ export { type FvMasterDetailList, type FvMasterDetailListChangeDetail };
5
+ export declare const OkFvMasterDetailList: import("@lit/react").ReactWebComponent<FvMasterDetailList, {
6
+ onChange: EventName<FvMasterDetailListChangeEvent>;
7
+ }>;
8
+ export interface FvMasterDetailListChangeEvent extends CustomEvent<FvMasterDetailListChangeDetail> {
9
+ target: FvMasterDetailList;
10
+ }
@@ -0,0 +1,11 @@
1
+ 'use client';
2
+ import { FvMasterDetailList, fvMasterDetailListTag } from '@ni/ok-components/dist/esm/fv/master-detail-list';
3
+ import { wrap } from '../../utilities/react-wrapper';
4
+ export { fvMasterDetailListTag };
5
+ export {};
6
+ export const OkFvMasterDetailList = wrap(FvMasterDetailList, {
7
+ events: {
8
+ onChange: 'change',
9
+ }
10
+ });
11
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/fv/master-detail-list/index.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,EACH,kBAAkB,EAClB,qBAAqB,EAExB,MAAM,kDAAkD,CAAC;AAC1D,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AAErE,OAAO,EAAE,qBAAqB,EAAE,CAAC;AACjC,OAAO,EAAgE,CAAC;AACxE,MAAM,CAAC,MAAM,oBAAoB,GAAG,IAAI,CAAC,kBAAkB,EAAE;IACzD,MAAM,EAAE;QACJ,QAAQ,EAAE,QAAoD;KACjE;CACJ,CAAC,CAAC","sourcesContent":["'use client';\n\nimport {\n FvMasterDetailList,\n fvMasterDetailListTag,\n type FvMasterDetailListChangeDetail\n} from '@ni/ok-components/dist/esm/fv/master-detail-list';\nimport { wrap, type EventName } from '../../utilities/react-wrapper';\n\nexport { fvMasterDetailListTag };\nexport { type FvMasterDetailList, type FvMasterDetailListChangeDetail };\nexport const OkFvMasterDetailList = wrap(FvMasterDetailList, {\n events: {\n onChange: 'change' as EventName<FvMasterDetailListChangeEvent>,\n }\n});\nexport interface FvMasterDetailListChangeEvent extends CustomEvent<FvMasterDetailListChangeDetail> {\n target: FvMasterDetailList;\n}"]}
@@ -0,0 +1,4 @@
1
+ import { FvMasterDetailListItem, fvMasterDetailListItemTag } from '@ni/ok-components/dist/esm/fv/master-detail-list-item';
2
+ export { fvMasterDetailListItemTag };
3
+ export { type FvMasterDetailListItem };
4
+ export declare const OkFvMasterDetailListItem: import("@lit/react").ReactWebComponent<FvMasterDetailListItem, {}>;
@@ -0,0 +1,7 @@
1
+ 'use client';
2
+ import { FvMasterDetailListItem, fvMasterDetailListItemTag } from '@ni/ok-components/dist/esm/fv/master-detail-list-item';
3
+ import { wrap } from '../../utilities/react-wrapper';
4
+ export { fvMasterDetailListItemTag };
5
+ export {};
6
+ export const OkFvMasterDetailListItem = wrap(FvMasterDetailListItem);
7
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/fv/master-detail-list-item/index.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,EACH,sBAAsB,EACtB,yBAAyB,EAC5B,MAAM,uDAAuD,CAAC;AAC/D,OAAO,EAAE,IAAI,EAAE,MAAM,+BAA+B,CAAC;AAErD,OAAO,EAAE,yBAAyB,EAAE,CAAC;AACrC,OAAO,EAA+B,CAAC;AACvC,MAAM,CAAC,MAAM,wBAAwB,GAAG,IAAI,CAAC,sBAAsB,CAAC,CAAC","sourcesContent":["'use client';\n\nimport {\n FvMasterDetailListItem,\n fvMasterDetailListItemTag\n} from '@ni/ok-components/dist/esm/fv/master-detail-list-item';\nimport { wrap } from '../../utilities/react-wrapper';\n\nexport { fvMasterDetailListItemTag };\nexport { type FvMasterDetailListItem };\nexport const OkFvMasterDetailListItem = wrap(FvMasterDetailListItem);"]}
@@ -0,0 +1,17 @@
1
+ import { FvSplitButton, fvSplitButtonTag } from '@ni/ok-components/dist/esm/fv/split-button';
2
+ import { FvSplitButtonAppearance, FvSplitButtonAppearanceVariant } from '@ni/ok-components/dist/esm/fv/split-button/types';
3
+ import { type EventName } from '../../utilities/react-wrapper';
4
+ export { fvSplitButtonTag };
5
+ export { type FvSplitButton, FvSplitButtonAppearance, FvSplitButtonAppearanceVariant };
6
+ export declare const OkFvSplitButton: import("@lit/react").ReactWebComponent<FvSplitButton, {
7
+ onTrigger: EventName<FvSplitButtonTriggerEvent>;
8
+ onToggle: EventName<FvSplitButtonToggleEvent>;
9
+ }>;
10
+ export interface FvSplitButtonTriggerEvent extends CustomEvent<void> {
11
+ target: FvSplitButton;
12
+ }
13
+ export interface FvSplitButtonToggleEvent extends CustomEvent<{
14
+ open: boolean;
15
+ }> {
16
+ target: FvSplitButton;
17
+ }
@@ -0,0 +1,13 @@
1
+ 'use client';
2
+ import { FvSplitButton, fvSplitButtonTag } from '@ni/ok-components/dist/esm/fv/split-button';
3
+ import { FvSplitButtonAppearance, FvSplitButtonAppearanceVariant } from '@ni/ok-components/dist/esm/fv/split-button/types';
4
+ import { wrap } from '../../utilities/react-wrapper';
5
+ export { fvSplitButtonTag };
6
+ export { FvSplitButtonAppearance, FvSplitButtonAppearanceVariant };
7
+ export const OkFvSplitButton = wrap(FvSplitButton, {
8
+ events: {
9
+ onTrigger: 'trigger',
10
+ onToggle: 'toggle',
11
+ }
12
+ });
13
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/fv/split-button/index.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,EAAE,aAAa,EAAE,gBAAgB,EAAE,MAAM,4CAA4C,CAAC;AAC7F,OAAO,EACH,uBAAuB,EACvB,8BAA8B,EACjC,MAAM,kDAAkD,CAAC;AAC1D,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AAErE,OAAO,EAAE,gBAAgB,EAAE,CAAC;AAC5B,OAAO,EAEH,uBAAuB,EACvB,8BAA8B,EACjC,CAAC;AACF,MAAM,CAAC,MAAM,eAAe,GAAG,IAAI,CAAC,aAAa,EAAE;IAC/C,MAAM,EAAE;QACJ,SAAS,EAAE,SAAiD;QAC5D,QAAQ,EAAE,QAA+C;KAC5D;CACJ,CAAC,CAAC","sourcesContent":["'use client';\n\nimport { FvSplitButton, fvSplitButtonTag } from '@ni/ok-components/dist/esm/fv/split-button';\nimport {\n FvSplitButtonAppearance,\n FvSplitButtonAppearanceVariant\n} from '@ni/ok-components/dist/esm/fv/split-button/types';\nimport { wrap, type EventName } from '../../utilities/react-wrapper';\n\nexport { fvSplitButtonTag };\nexport {\n type FvSplitButton,\n FvSplitButtonAppearance,\n FvSplitButtonAppearanceVariant\n};\nexport const OkFvSplitButton = wrap(FvSplitButton, {\n events: {\n onTrigger: 'trigger' as EventName<FvSplitButtonTriggerEvent>,\n onToggle: 'toggle' as EventName<FvSplitButtonToggleEvent>,\n }\n});\nexport interface FvSplitButtonTriggerEvent extends CustomEvent<void> {\n target: FvSplitButton;\n}\nexport interface FvSplitButtonToggleEvent extends CustomEvent<{ open: boolean }> {\n target: FvSplitButton;\n}"]}
@@ -0,0 +1,17 @@
1
+ import { FvSplitButtonAnchor, fvSplitButtonAnchorTag } from '@ni/ok-components/dist/esm/fv/split-button-anchor';
2
+ import { FvSplitButtonAnchorAppearance, FvSplitButtonAnchorAppearanceVariant } from '@ni/ok-components/dist/esm/fv/split-button-anchor/types';
3
+ import { type EventName } from '../../utilities/react-wrapper';
4
+ export { fvSplitButtonAnchorTag };
5
+ export { type FvSplitButtonAnchor, FvSplitButtonAnchorAppearance, FvSplitButtonAnchorAppearanceVariant };
6
+ export declare const OkFvSplitButtonAnchor: import("@lit/react").ReactWebComponent<FvSplitButtonAnchor, {
7
+ onTrigger: EventName<FvSplitButtonAnchorTriggerEvent>;
8
+ onToggle: EventName<FvSplitButtonAnchorToggleEvent>;
9
+ }>;
10
+ export interface FvSplitButtonAnchorTriggerEvent extends CustomEvent<void> {
11
+ target: FvSplitButtonAnchor;
12
+ }
13
+ export interface FvSplitButtonAnchorToggleEvent extends CustomEvent<{
14
+ open: boolean;
15
+ }> {
16
+ target: FvSplitButtonAnchor;
17
+ }
@@ -0,0 +1,13 @@
1
+ 'use client';
2
+ import { FvSplitButtonAnchor, fvSplitButtonAnchorTag } from '@ni/ok-components/dist/esm/fv/split-button-anchor';
3
+ import { FvSplitButtonAnchorAppearance, FvSplitButtonAnchorAppearanceVariant } from '@ni/ok-components/dist/esm/fv/split-button-anchor/types';
4
+ import { wrap } from '../../utilities/react-wrapper';
5
+ export { fvSplitButtonAnchorTag };
6
+ export { FvSplitButtonAnchorAppearance, FvSplitButtonAnchorAppearanceVariant };
7
+ export const OkFvSplitButtonAnchor = wrap(FvSplitButtonAnchor, {
8
+ events: {
9
+ onTrigger: 'trigger',
10
+ onToggle: 'toggle',
11
+ }
12
+ });
13
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/fv/split-button-anchor/index.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,EACH,mBAAmB,EACnB,sBAAsB,EACzB,MAAM,mDAAmD,CAAC;AAC3D,OAAO,EACH,6BAA6B,EAC7B,oCAAoC,EACvC,MAAM,yDAAyD,CAAC;AACjE,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AAErE,OAAO,EAAE,sBAAsB,EAAE,CAAC;AAClC,OAAO,EAEH,6BAA6B,EAC7B,oCAAoC,EACvC,CAAC;AACF,MAAM,CAAC,MAAM,qBAAqB,GAAG,IAAI,CAAC,mBAAmB,EAAE;IAC3D,MAAM,EAAE;QACJ,SAAS,EAAE,SAAuD;QAClE,QAAQ,EAAE,QAAqD;KAClE;CACJ,CAAC,CAAC","sourcesContent":["'use client';\n\nimport {\n FvSplitButtonAnchor,\n fvSplitButtonAnchorTag\n} from '@ni/ok-components/dist/esm/fv/split-button-anchor';\nimport {\n FvSplitButtonAnchorAppearance,\n FvSplitButtonAnchorAppearanceVariant\n} from '@ni/ok-components/dist/esm/fv/split-button-anchor/types';\nimport { wrap, type EventName } from '../../utilities/react-wrapper';\n\nexport { fvSplitButtonAnchorTag };\nexport {\n type FvSplitButtonAnchor,\n FvSplitButtonAnchorAppearance,\n FvSplitButtonAnchorAppearanceVariant\n};\nexport const OkFvSplitButtonAnchor = wrap(FvSplitButtonAnchor, {\n events: {\n onTrigger: 'trigger' as EventName<FvSplitButtonAnchorTriggerEvent>,\n onToggle: 'toggle' as EventName<FvSplitButtonAnchorToggleEvent>,\n }\n});\nexport interface FvSplitButtonAnchorTriggerEvent extends CustomEvent<void> {\n target: FvSplitButtonAnchor;\n}\nexport interface FvSplitButtonAnchorToggleEvent extends CustomEvent<{ open: boolean }> {\n target: FvSplitButtonAnchor;\n}"]}
@@ -0,0 +1,10 @@
1
+ import { FvSummaryPanel, fvSummaryPanelTag } from '@ni/ok-components/dist/esm/fv/summary-panel';
2
+ import { type EventName } from '../../utilities/react-wrapper';
3
+ export { fvSummaryPanelTag };
4
+ export { type FvSummaryPanel };
5
+ export declare const OkFvSummaryPanel: import("@lit/react").ReactWebComponent<FvSummaryPanel, {
6
+ onEditItems: EventName<FvSummaryPanelEditItemsEvent>;
7
+ }>;
8
+ export interface FvSummaryPanelEditItemsEvent extends CustomEvent<void> {
9
+ target: FvSummaryPanel;
10
+ }
@@ -0,0 +1,11 @@
1
+ 'use client';
2
+ import { FvSummaryPanel, fvSummaryPanelTag } from '@ni/ok-components/dist/esm/fv/summary-panel';
3
+ import { wrap } from '../../utilities/react-wrapper';
4
+ export { fvSummaryPanelTag };
5
+ export {};
6
+ export const OkFvSummaryPanel = wrap(FvSummaryPanel, {
7
+ events: {
8
+ onEditItems: 'edit-items',
9
+ }
10
+ });
11
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/fv/summary-panel/index.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,6CAA6C,CAAC;AAChG,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AAErE,OAAO,EAAE,iBAAiB,EAAE,CAAC;AAC7B,OAAO,EAAuB,CAAC;AAC/B,MAAM,CAAC,MAAM,gBAAgB,GAAG,IAAI,CAAC,cAAc,EAAE;IACjD,MAAM,EAAE;QACJ,WAAW,EAAE,YAAuD;KACvE;CACJ,CAAC,CAAC","sourcesContent":["'use client';\n\nimport { FvSummaryPanel, fvSummaryPanelTag } from '@ni/ok-components/dist/esm/fv/summary-panel';\nimport { wrap, type EventName } from '../../utilities/react-wrapper';\n\nexport { fvSummaryPanelTag };\nexport { type FvSummaryPanel };\nexport const OkFvSummaryPanel = wrap(FvSummaryPanel, {\n events: {\n onEditItems: 'edit-items' as EventName<FvSummaryPanelEditItemsEvent>,\n }\n});\nexport interface FvSummaryPanelEditItemsEvent extends CustomEvent<void> {\n target: FvSummaryPanel;\n}"]}
@@ -0,0 +1,5 @@
1
+ import { FvSummaryPanelTile, fvSummaryPanelTileTag } from '@ni/ok-components/dist/esm/fv/summary-panel-tile';
2
+ import { FvSummaryPanelTileTextPosition } from '@ni/ok-components/dist/esm/fv/summary-panel-tile/types';
3
+ export { fvSummaryPanelTileTag };
4
+ export { type FvSummaryPanelTile, FvSummaryPanelTileTextPosition };
5
+ export declare const OkFvSummaryPanelTile: import("@lit/react").ReactWebComponent<FvSummaryPanelTile, {}>;
@@ -0,0 +1,8 @@
1
+ 'use client';
2
+ import { FvSummaryPanelTile, fvSummaryPanelTileTag } from '@ni/ok-components/dist/esm/fv/summary-panel-tile';
3
+ import { FvSummaryPanelTileTextPosition } from '@ni/ok-components/dist/esm/fv/summary-panel-tile/types';
4
+ import { wrap } from '../../utilities/react-wrapper';
5
+ export { fvSummaryPanelTileTag };
6
+ export { FvSummaryPanelTileTextPosition };
7
+ export const OkFvSummaryPanelTile = wrap(FvSummaryPanelTile);
8
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/fv/summary-panel-tile/index.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,EACH,kBAAkB,EAClB,qBAAqB,EACxB,MAAM,kDAAkD,CAAC;AAC1D,OAAO,EAAE,8BAA8B,EAAE,MAAM,wDAAwD,CAAC;AACxG,OAAO,EAAE,IAAI,EAAE,MAAM,+BAA+B,CAAC;AAErD,OAAO,EAAE,qBAAqB,EAAE,CAAC;AACjC,OAAO,EAA2B,8BAA8B,EAAE,CAAC;AACnE,MAAM,CAAC,MAAM,oBAAoB,GAAG,IAAI,CAAC,kBAAkB,CAAC,CAAC","sourcesContent":["'use client';\n\nimport {\n FvSummaryPanelTile,\n fvSummaryPanelTileTag\n} from '@ni/ok-components/dist/esm/fv/summary-panel-tile';\nimport { FvSummaryPanelTileTextPosition } from '@ni/ok-components/dist/esm/fv/summary-panel-tile/types';\nimport { wrap } from '../../utilities/react-wrapper';\n\nexport { fvSummaryPanelTileTag };\nexport { type FvSummaryPanelTile, FvSummaryPanelTileTextPosition };\nexport const OkFvSummaryPanelTile = wrap(FvSummaryPanelTile);"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ni/ok-react",
3
- "version": "0.9.25",
3
+ "version": "0.10.0",
4
4
  "description": "React components for NI Ok Components",
5
5
  "keywords": [
6
6
  "ni",
@@ -45,11 +45,11 @@
45
45
  "license": "MIT",
46
46
  "peerDependencies": {
47
47
  "@lit/react": "^1.0.8",
48
- "@ni/ok-components": "^1.6.8",
48
+ "@ni/ok-components": "^1.6.9",
49
49
  "react": "^17 || ^18 || ^19"
50
50
  },
51
51
  "devDependencies": {
52
- "@ni/ok-components": "^1.6.8",
52
+ "@ni/ok-components": "^1.6.9",
53
53
  "@ni-private/eslint-config-nimble": "*",
54
54
  "typescript": "~5.8.3"
55
55
  }