-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* we need a relative path here * fix for range slider only * fixed some imports and deactivated icon tests * now all tests run against build * prod fix of example app
- Loading branch information
1 parent
3f62ffb
commit 48414b5
Showing
81 changed files
with
200 additions
and
170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
packages/ui-library/src/components/actions/buttons/icon-button/renderFunction.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
import { BlrIconButtonType, TAG_NAME } from '.'; | ||
import { BlrIconButtonType } from '.'; | ||
import { genericBlrComponentRenderer } from '../../../../utils/typesafe-generic-component-renderer'; | ||
|
||
export const TAG_NAME = 'blr-icon-button'; | ||
|
||
export const BlrIconButtonRenderFunction = (params: BlrIconButtonType) => | ||
genericBlrComponentRenderer<BlrIconButtonType>(TAG_NAME, { ...params }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
packages/ui-library/src/components/actions/buttons/text-button/renderFunction.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
import { BlrTextButtonType, TAG_NAME } from '.'; | ||
import { BlrTextButtonType } from '.'; | ||
import { genericBlrComponentRenderer } from '../../../../utils/typesafe-generic-component-renderer'; | ||
|
||
export const TAG_NAME = 'blr-text-button'; | ||
|
||
export const BlrTextButtonRenderFunction = (params: BlrTextButtonType) => | ||
genericBlrComponentRenderer<BlrTextButtonType>(TAG_NAME, { ...params }); |
4 changes: 3 additions & 1 deletion
4
packages/ui-library/src/components/feedback/loader/index.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
packages/ui-library/src/components/feedback/loader/renderFunction.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
import { BlrLoaderType, TAG_NAME } from '.'; | ||
import { BlrLoaderType } from '.'; | ||
import { genericBlrComponentRenderer } from '../../../utils/typesafe-generic-component-renderer'; | ||
|
||
export const TAG_NAME = 'blr-loader'; | ||
|
||
export const BlrLoaderRenderFunction = (params: BlrLoaderType) => | ||
genericBlrComponentRenderer<BlrLoaderType>(TAG_NAME, { ...params }); |
4 changes: 3 additions & 1 deletion
4
packages/ui-library/src/components/feedback/tooltip/index.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
packages/ui-library/src/components/feedback/tooltip/renderFunction.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
import { TemplateResult } from 'lit'; | ||
import { BlrTooltipType, TAG_NAME } from '.'; | ||
import { BlrTooltipType } from '.'; | ||
import { genericBlrComponentRenderer } from '../../../utils/typesafe-generic-component-renderer'; | ||
|
||
export const TAG_NAME = 'blr-tooltip'; | ||
|
||
export const BlrTooltipRenderFunction = (params: BlrTooltipType, children: TemplateResult<1>) => | ||
genericBlrComponentRenderer<BlrTooltipType>(TAG_NAME, { ...params }, children); |
4 changes: 3 additions & 1 deletion
4
packages/ui-library/src/components/feedback/tooltip/tooltip-bubble/index.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
packages/ui-library/src/components/feedback/tooltip/tooltip-bubble/renderFunction.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
import { BlrTooltipBubbleType, TAG_NAME } from '.'; | ||
import { BlrTooltipBubbleType } from '.'; | ||
import { genericBlrComponentRenderer } from '../../../../utils/typesafe-generic-component-renderer'; | ||
|
||
export const TAG_NAME = 'blr-tooltip-bubble'; | ||
|
||
export const BlrTooltipBubbleRenderFunction = (params: BlrTooltipBubbleType) => | ||
genericBlrComponentRenderer<BlrTooltipBubbleType>(TAG_NAME, { ...params }); |
4 changes: 3 additions & 1 deletion
4
packages/ui-library/src/components/forms/checkbox/index.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
packages/ui-library/src/components/forms/checkbox/renderFunction.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
import { BlrCheckboxType, TAG_NAME } from '.'; | ||
import { BlrCheckboxType } from '.'; | ||
import { genericBlrComponentRenderer } from '../../../utils/typesafe-generic-component-renderer'; | ||
|
||
export const TAG_NAME = 'blr-checkbox'; | ||
|
||
export const BlrCheckboxRenderFunction = (params: BlrCheckboxType) => | ||
genericBlrComponentRenderer<BlrCheckboxType>(TAG_NAME, { ...params }); |
4 changes: 3 additions & 1 deletion
4
packages/ui-library/src/components/forms/number-input/index.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
packages/ui-library/src/components/forms/number-input/renderFunction.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
import { BlrNumberInputType, TAG_NAME } from '.'; | ||
import { BlrNumberInputType } from '.'; | ||
import { genericBlrComponentRenderer } from '../../../utils/typesafe-generic-component-renderer'; | ||
|
||
export const TAG_NAME = 'blr-number-input'; | ||
|
||
export const BlrNumberInputRenderFunction = (params: BlrNumberInputType) => | ||
genericBlrComponentRenderer<BlrNumberInputType>(TAG_NAME, { ...params }); |
4 changes: 3 additions & 1 deletion
4
packages/ui-library/src/components/forms/radio/radio-input-group/index.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
packages/ui-library/src/components/forms/radio/radio-input-group/renderFunction.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
import { BlrRadioGroupType, TAG_NAME } from '.'; | ||
import { BlrRadioGroupType } from '.'; | ||
import { genericBlrComponentRenderer } from '../../../../utils/typesafe-generic-component-renderer'; | ||
|
||
export const TAG_NAME = 'blr-radio-group'; | ||
|
||
export const BlrRadioGroupRenderFunction = (params: BlrRadioGroupType) => | ||
genericBlrComponentRenderer<BlrRadioGroupType>(TAG_NAME, { ...params }); |
4 changes: 3 additions & 1 deletion
4
packages/ui-library/src/components/forms/radio/radio-input/index.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
packages/ui-library/src/components/forms/radio/radio-input/renderFunction.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
import { BlrRadioType, TAG_NAME } from '.'; | ||
import { BlrRadioType } from '.'; | ||
import { genericBlrComponentRenderer } from '../../../../utils/typesafe-generic-component-renderer'; | ||
|
||
export const TAG_NAME = 'blr-radio'; | ||
|
||
export const BlrRadioRenderFunction = (params: BlrRadioType) => | ||
genericBlrComponentRenderer<BlrRadioType>(TAG_NAME, { ...params }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
packages/ui-library/src/components/forms/select/renderFunction.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
import { BlrSelectType, TAG_NAME } from '.'; | ||
import { BlrSelectType } from '.'; | ||
import { genericBlrComponentRenderer } from '../../../utils/typesafe-generic-component-renderer'; | ||
|
||
export const TAG_NAME = 'blr-select'; | ||
|
||
export const BlrSelectRenderFunction = (params: BlrSelectType) => | ||
genericBlrComponentRenderer<BlrSelectType>(TAG_NAME, { ...params }); |
4 changes: 3 additions & 1 deletion
4
...library/src/components/forms/slider/slider-single-value/range-legend-slider/index.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
...ary/src/components/forms/slider/slider-single-value/range-legend-slider/renderFunction.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
import { BlrRangeLegendSliderType, TAG_NAME } from '.'; | ||
import { BlrRangeLegendSliderType } from '.'; | ||
import { genericBlrComponentRenderer } from '../../../../../utils/typesafe-generic-component-renderer'; | ||
|
||
export const TAG_NAME = 'blr-range-legend-slider'; | ||
|
||
export const BlrRangeLegendSliderRenderFunction = (params: BlrRangeLegendSliderType) => | ||
genericBlrComponentRenderer<BlrRangeLegendSliderType>(TAG_NAME, { ...params }); |
3 changes: 2 additions & 1 deletion
3
.../ui-library/src/components/forms/slider/slider-single-value/range-slider/index.stories.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
...ges/ui-library/src/components/forms/slider/slider-single-value/range-slider/index.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
...ui-library/src/components/forms/slider/slider-single-value/range-slider/renderFunction.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
import { BlrRangeSliderType, TAG_NAME } from '.'; | ||
// import { TAG_NAME } from '.'; | ||
import type { BlrRangeSliderType } from '.'; | ||
import { genericBlrComponentRenderer } from '../../../../../utils/typesafe-generic-component-renderer'; | ||
|
||
export const TAG_NAME = 'blr-range-slider'; | ||
|
||
export const BlrRangeSliderRenderFunction = (params: BlrRangeSliderType) => | ||
genericBlrComponentRenderer<BlrRangeSliderType>(TAG_NAME, { ...params }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
...c/components/forms/slider/slider-two-values/range-legend-min-max-slider/renderFunction.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
import { BlrRangeLegendMinMaxSliderType, TAG_NAME } from '.'; | ||
import { BlrRangeLegendMinMaxSliderType } from '.'; | ||
import { genericBlrComponentRenderer } from '../../../../../utils/typesafe-generic-component-renderer'; | ||
|
||
export const TAG_NAME = 'blr-range-legend-min-max-slider'; | ||
|
||
export const BlrRangeLegendMinMaxSliderRenderFunction = (params: BlrRangeLegendMinMaxSliderType) => | ||
genericBlrComponentRenderer<BlrRangeLegendMinMaxSliderType>(TAG_NAME, { ...params }); |
4 changes: 3 additions & 1 deletion
4
...-library/src/components/forms/slider/slider-two-values/range-min-max-slider/index.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.