diff --git a/doc/GETSTARTED.md b/doc/GETSTARTED.md index 9628f84c9..3253f9c42 100644 --- a/doc/GETSTARTED.md +++ b/doc/GETSTARTED.md @@ -40,13 +40,14 @@ All regular B01LER team meetings are in our [B01LER Core calendar](https://myema |Meeting Name |When |Who |Why | |-----------------------------|----------------------------------------------------------------------|----------------------------------------------------------------------|------------------------------------------------------------------------------------| |B01LER Daily |Wednesdays, Thursdays (beginning of Planning or Refinement) & Fridays |Complete B01LER Team |Updating eachother | -|B01LER Planning |Every 2nd Thursday (When there is no Refinement) |Complete B01LER Team |Closing the previous and planning the next iteration | +|B01LER Planning |Every 2nd Thursday (When there is no Refinement) |Complete B01LER Team |Celebrate outcome of the last iteration, present outcome of the pre-planning | |B01LER Refinement |Every 2nd Thursday (When there is no Planning) |Complete B01LER Team |Refining issues for upcomming iterations | |B01LER Retro |Every 4th Thursday (After Planning) |Complete B01LER Team |Looking back at the last two iterations to improve things in the future | |B01LER Design Review |Tuesdays & Thursdays |B01LER Design Lead and every team member that needs a design review |Getting approval from design for code implementations | |B01LER Pair Programming Hour |Fridays |Everyone from the B01LER Team that wants to join |Collaborate and learn from each other by tackling coding challanges together | -|B01LER Weekly Checkup |Thursdays |B01LER Leadership |Discuss and decide on general product topics and check the roadmap | -|B01LER Marketing Weekly |Thursdays |B01LER Leadership |Discuss and decide on general marketing topics | +|B01LER Pre-Planning |Thursdays |B01LER Leadership (and/or stand-ins) |Discuss objectives and prepare a set of issues to finish int he next iteration | +|B01LER Weekly Checkup |Thursdays |B01LER Leadership (and/or stand-ins) |Discuss and decide on general product topics and check the roadmap | +|B01LER Marketing Weekly |Thursdays |B01LER Leadership (and/or stand-ins) |Discuss and decide on general marketing topics | |B01LER Monthly |Last Thursday of a month |Everyone who wants to join |Giving an update, answering questions and sometimes deep dives into specific topics | diff --git a/packages/ui-library/src/components/actions/buttons/icon-button/index.stories.ts b/packages/ui-library/src/components/actions/buttons/icon-button/index.stories.ts index 304a0a6b4..d41bf4fe1 100644 --- a/packages/ui-library/src/components/actions/buttons/icon-button/index.stories.ts +++ b/packages/ui-library/src/components/actions/buttons/icon-button/index.stories.ts @@ -156,11 +156,6 @@ export default { disable: true, }, }, - loadingStatus: { - table: { - disable: true, - }, - }, }, parameters: { design: { @@ -201,7 +196,6 @@ const defaultParams: BlrIconButtonType = { loading: false, arialabel: 'Icon Button', buttonId: 'iconButtonId', - loadingStatus: 'Loading', }; BlrIconButton.args = defaultParams; diff --git a/packages/ui-library/src/components/actions/buttons/icon-button/index.test.ts b/packages/ui-library/src/components/actions/buttons/icon-button/index.test.ts index 3c60eb9b8..8953cfda3 100644 --- a/packages/ui-library/src/components/actions/buttons/icon-button/index.test.ts +++ b/packages/ui-library/src/components/actions/buttons/icon-button/index.test.ts @@ -13,7 +13,6 @@ const sampleParams: BlrIconButtonType = { disabled: false, buttonId: 'button-id', variant: 'cta', - loadingStatus: 'Loading', theme: 'Light', }; diff --git a/packages/ui-library/src/components/actions/buttons/icon-button/index.ts b/packages/ui-library/src/components/actions/buttons/icon-button/index.ts index cd3e776a6..0dc9d2031 100644 --- a/packages/ui-library/src/components/actions/buttons/icon-button/index.ts +++ b/packages/ui-library/src/components/actions/buttons/icon-button/index.ts @@ -26,7 +26,6 @@ export class BlrIconButton extends LitElement { @property() buttonId?: string; @property() variant: ActionVariantType = 'primary'; @property() size?: ActionSizesType = 'md'; - @property() loadingStatus!: string; @property() theme: ThemeType = 'Light'; @@ -120,7 +119,6 @@ export class BlrIconButton extends LitElement { ? BlrLoaderRenderFunction({ size: loaderSizeVariant, variant: loaderVariant, - loadingStatus: this.loadingStatus, theme: this.theme, }) : nothing} diff --git a/packages/ui-library/src/components/actions/buttons/text-button/index.stories.ts b/packages/ui-library/src/components/actions/buttons/text-button/index.stories.ts index 84cc7df9f..1d3f5e307 100644 --- a/packages/ui-library/src/components/actions/buttons/text-button/index.stories.ts +++ b/packages/ui-library/src/components/actions/buttons/text-button/index.stories.ts @@ -37,7 +37,6 @@ const defaultParams: BlrTextButtonType = { loading: false, buttonId: 'buttonId', buttonDisplay: 'inline-block', - loadingStatus: '', }; export default { @@ -179,11 +178,6 @@ export default { category: 'Events', }, }, - loadingStatus: { - table: { - disable: true, - }, - }, }, parameters: { design: { diff --git a/packages/ui-library/src/components/actions/buttons/text-button/index.test.ts b/packages/ui-library/src/components/actions/buttons/text-button/index.test.ts index 9208be73b..f2e46d18a 100644 --- a/packages/ui-library/src/components/actions/buttons/text-button/index.test.ts +++ b/packages/ui-library/src/components/actions/buttons/text-button/index.test.ts @@ -15,7 +15,6 @@ const sampleParams: BlrTextButtonType = { disabled: false, buttonId: 'button-id', variant: 'cta', - loadingStatus: 'Loading', theme: 'Light', buttonDisplay: 'inline-block', }; diff --git a/packages/ui-library/src/components/actions/buttons/text-button/index.ts b/packages/ui-library/src/components/actions/buttons/text-button/index.ts index b0fc113d3..9763cab86 100644 --- a/packages/ui-library/src/components/actions/buttons/text-button/index.ts +++ b/packages/ui-library/src/components/actions/buttons/text-button/index.ts @@ -35,7 +35,6 @@ export class BlrTextButton extends LitElement { @property() buttonId?: string; @property() variant: ActionVariantType = 'primary'; @property() size?: ActionSizesType = 'md'; - @property() loadingStatus!: string; @property() buttonDisplay?: ButtonDisplayType = 'inline-block'; // these are not triggered directly but allows us to map it internally and bve typesafe @@ -167,7 +166,6 @@ export class BlrTextButton extends LitElement { ${BlrLoaderRenderFunction({ size: loaderSizeVariant, variant: loaderVariant, - loadingStatus: this.loadingStatus, theme: this.theme, })} ${labelAndIconGroup} diff --git a/packages/ui-library/src/components/feedback/loader/index.stories.ts b/packages/ui-library/src/components/feedback/loader/index.stories.ts index e6436a0c5..51c470148 100644 --- a/packages/ui-library/src/components/feedback/loader/index.stories.ts +++ b/packages/ui-library/src/components/feedback/loader/index.stories.ts @@ -24,7 +24,6 @@ const defaultParams: BlrLoaderType = { theme: 'Light', variant: 'default', size: 'md', - loadingStatus: 'Loading', }; export default { @@ -55,11 +54,6 @@ export default { category: 'Appearance', }, }, - loadingStatus: { - table: { - disable: true, - }, - }, }, parameters: { design: { @@ -101,7 +95,6 @@ export const Variant = () => { theme: 'Light', variant: 'default', size: 'md', - loadingStatus: 'Loading', })} `; }; @@ -116,7 +109,6 @@ export const Inverted = () => { ...defaultParams, variant: 'default', size: 'md', - loadingStatus: 'Loading', })} `; diff --git a/packages/ui-library/src/components/feedback/loader/index.test.ts b/packages/ui-library/src/components/feedback/loader/index.test.ts index 034429d76..83d06c8fb 100644 --- a/packages/ui-library/src/components/feedback/loader/index.test.ts +++ b/packages/ui-library/src/components/feedback/loader/index.test.ts @@ -8,7 +8,6 @@ import { querySelectorDeep } from 'query-selector-shadow-dom'; const sampleParams: BlrLoaderType = { variant: 'default', - loadingStatus: 'Loading', theme: 'Light', }; diff --git a/packages/ui-library/src/components/feedback/loader/index.ts b/packages/ui-library/src/components/feedback/loader/index.ts index 375d96599..70a510656 100644 --- a/packages/ui-library/src/components/feedback/loader/index.ts +++ b/packages/ui-library/src/components/feedback/loader/index.ts @@ -13,8 +13,6 @@ export class BlrLoader extends LitElement { @property() size?: ActionSizesType = 'md'; @property() variant?: FeedbackVariantType; - @property() loadingStatus!: string; - @property() theme: ThemeType = 'Light'; protected render() { @@ -31,7 +29,7 @@ export class BlrLoader extends LitElement { ${dynamicStyles.map((style) => style)}