Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
184a126
feat(progress-bar): add recipe and tokens
thetaPC Apr 17, 2026
cf033e1
feat(progress-bar): add recipe and tokens pt2
thetaPC Apr 17, 2026
87d6c29
feat(progress-bar): more buffer bar styles
thetaPC Apr 17, 2026
9367f06
test(progress-bar): update determinate test page
thetaPC Apr 17, 2026
98e77da
refactor(progress-bar): cleanup styles
thetaPC Apr 17, 2026
10f28df
chore(progress-bar): run build
thetaPC Apr 17, 2026
2fbeade
feat(progress-bar): cleanup
thetaPC Apr 20, 2026
326eb02
test(progress-bar): add shape snapshots
thetaPC Apr 20, 2026
c7aa16d
chore(progress-bar): run build
thetaPC Apr 20, 2026
535cc52
feat(progress-bar): remove theme files
thetaPC Apr 20, 2026
bd16e5a
feat(progress-bar): update interfaces
thetaPC Apr 20, 2026
7212005
docs(chip): remove line
thetaPC Apr 20, 2026
85829fe
feat(progress-bar): add ionColor
thetaPC Apr 20, 2026
bda0296
feat(progress-bar): use ionColor
thetaPC Apr 20, 2026
6a19f57
feat(progress-bar): remove unused styles
thetaPC Apr 22, 2026
e2dcf68
chore(progress-bar): run build
thetaPC Apr 22, 2026
bd86b8b
refactor(progress-bar): replace ion-hide
thetaPC Apr 22, 2026
bf2d8a4
fix(progress-bar): revert virtualProp
thetaPC Apr 22, 2026
e96a032
feat(progress-bar): add shape constant
thetaPC Apr 22, 2026
0c4b4bd
fix(progress-bar): add ion-hide back
thetaPC Apr 22, 2026
069befe
docs(progress-bar): use correct class
thetaPC Apr 24, 2026
c48f5b9
refactor(progress-bar): switch to true
thetaPC Apr 24, 2026
62f395e
docs(progress-bar) remove extra asterisk
thetaPC Apr 28, 2026
3e9a5bb
chore(progress-bar): update components.d.ts
thetaPC Apr 28, 2026
e7ecbe9
feat(ionic): remove --token-*
thetaPC Apr 28, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 15 additions & 5 deletions core/api.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1934,13 +1934,23 @@ ion-progress-bar,prop,color,"danger" | "dark" | "light" | "medium" | "primary" |
ion-progress-bar,prop,mode,"ios" | "md",undefined,false,false
ion-progress-bar,prop,reversed,boolean,false,false,false
ion-progress-bar,prop,shape,"rectangular" | "round" | undefined,undefined,false,false
ion-progress-bar,prop,theme,"ios" | "md" | "ionic",undefined,false,false
ion-progress-bar,prop,type,"determinate" | "indeterminate",'determinate',false,false
ion-progress-bar,prop,value,number,0,false,false
ion-progress-bar,css-prop,--background,ios
ion-progress-bar,css-prop,--background,md
ion-progress-bar,css-prop,--progress-background,ios
ion-progress-bar,css-prop,--progress-background,md
ion-progress-bar,css-prop,--ion-progress-bar-determinate-buffer-bar-default-background
ion-progress-bar,css-prop,--ion-progress-bar-determinate-buffer-bar-semantic-default-background
ion-progress-bar,css-prop,--ion-progress-bar-determinate-buffer-bar-solid-default-background
ion-progress-bar,css-prop,--ion-progress-bar-determinate-buffer-circles-default-background
ion-progress-bar,css-prop,--ion-progress-bar-determinate-buffer-circles-semantic-default-background
ion-progress-bar,css-prop,--ion-progress-bar-determinate-progress-default-background
ion-progress-bar,css-prop,--ion-progress-bar-determinate-progress-semantic-default-background
ion-progress-bar,css-prop,--ion-progress-bar-height
ion-progress-bar,css-prop,--ion-progress-bar-indeterminate-buffer-bar-default-background
ion-progress-bar,css-prop,--ion-progress-bar-indeterminate-buffer-bar-semantic-default-background
ion-progress-bar,css-prop,--ion-progress-bar-indeterminate-buffer-bar-solid-default-background
ion-progress-bar,css-prop,--ion-progress-bar-indeterminate-progress-default-background
ion-progress-bar,css-prop,--ion-progress-bar-indeterminate-progress-semantic-default-background
ion-progress-bar,css-prop,--ion-progress-bar-shape-rectangular-border-radius
ion-progress-bar,css-prop,--ion-progress-bar-shape-round-border-radius
ion-progress-bar,part,progress
ion-progress-bar,part,stream
ion-progress-bar,part,track
Expand Down
18 changes: 6 additions & 12 deletions core/src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import { PickerChangeEventDetail } from "./components/picker/picker-interfaces";
import { PickerColumnChangeEventDetail, PickerColumnValue } from "./components/picker-column/picker-column-interfaces";
import { PickerButton, PickerColumn } from "./components/picker-legacy/picker-interface";
import { PopoverSize, PositionAlign, PositionReference, PositionSide, TriggerAction } from "./components/popover/popover-interface";
import { IonProgressBarShape } from "./components/progress-bar/progress-bar.interfaces";
import { RadioGroupChangeEventDetail, RadioGroupCompareFn } from "./components/radio-group/radio-group-interface";
import { PinFormatter, RangeChangeEventDetail, RangeKnobMoveEndEventDetail, RangeKnobMoveStartEventDetail, RangeValue } from "./components/range/range-interface";
import { RefresherEventDetail } from "./components/refresher/refresher-interface";
Expand Down Expand Up @@ -68,6 +69,7 @@ export { PickerChangeEventDetail } from "./components/picker/picker-interfaces";
export { PickerColumnChangeEventDetail, PickerColumnValue } from "./components/picker-column/picker-column-interfaces";
export { PickerButton, PickerColumn } from "./components/picker-legacy/picker-interface";
export { PopoverSize, PositionAlign, PositionReference, PositionSide, TriggerAction } from "./components/popover/popover-interface";
export { IonProgressBarShape } from "./components/progress-bar/progress-bar.interfaces";
export { RadioGroupChangeEventDetail, RadioGroupCompareFn } from "./components/radio-group/radio-group-interface";
export { PinFormatter, RangeChangeEventDetail, RangeKnobMoveEndEventDetail, RangeKnobMoveStartEventDetail, RangeValue } from "./components/range/range-interface";
export { RefresherEventDetail } from "./components/refresher/refresher-interface";
Expand Down Expand Up @@ -2997,13 +2999,9 @@ export namespace Components {
*/
"reversed": boolean;
/**
* Set to `"round"` for a progress bar with rounded corners, or `"rectangular"` for a progress bar without rounded corners. Defaults to `"round"` for the `ionic` theme, undefined for all other themes.
* Set to `"round"` for a progress bar with rounded corners, or `"rectangular"` for a progress bar without rounded corners. Defaults to `"round"` if both the shape property and theme config are unset.
*/
"shape"?: 'round' | 'rectangular';
/**
* The theme determines the visual appearance of the component.
*/
"theme"?: "ios" | "md" | "ionic";
"shape"?: IonProgressBarShape;
/**
* The state of the progress bar, based on if the time the process takes is known or not. Default options are: `"determinate"` (no animation), `"indeterminate"` (animate from left to right).
* @default 'determinate'
Expand Down Expand Up @@ -8921,13 +8919,9 @@ declare namespace LocalJSX {
*/
"reversed"?: boolean;
/**
* Set to `"round"` for a progress bar with rounded corners, or `"rectangular"` for a progress bar without rounded corners. Defaults to `"round"` for the `ionic` theme, undefined for all other themes.
* Set to `"round"` for a progress bar with rounded corners, or `"rectangular"` for a progress bar without rounded corners. Defaults to `"round"` if both the shape property and theme config are unset.
*/
"shape"?: 'round' | 'rectangular';
/**
* The theme determines the visual appearance of the component.
*/
"theme"?: "ios" | "md" | "ionic";
"shape"?: IonProgressBarShape;
/**
* The state of the progress bar, based on if the time the process takes is known or not. Default options are: `"determinate"` (no animation), `"indeterminate"` (animate from left to right).
* @default 'determinate'
Expand Down
8 changes: 4 additions & 4 deletions core/src/components/chip/chip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class Chip implements ComponentInterface {

/**
* Gets the chip fill. Uses the `fill` property if set, otherwise
* checks the theme config and falls back to 'solid' if neither is provided.
* checks the theme config. Defaults to `solid` if neither is set.
*/
get fillValue(): IonChipFill {
const fillConfig = config.getObjectValue('IonChip.fill', 'solid') as IonChipFill;
Expand All @@ -95,7 +95,7 @@ export class Chip implements ComponentInterface {

/**
* Gets the chip hue. Uses the `hue` property if set, otherwise
* checks the theme config and falls back to 'subtle' if neither is provided.
* checks the theme config. Defaults to `subtle` if neither is set.
*/
get hueValue(): IonChipHue {
const hueConfig = config.getObjectValue('IonChip.hue', 'subtle') as IonChipHue;
Expand All @@ -106,7 +106,7 @@ export class Chip implements ComponentInterface {

/**
* Gets the chip shape. Uses the `shape` property if set, otherwise
* checks the theme config and falls back to 'round' if neither is provided.
* checks the theme config. Defaults to `round` if neither is set.
*/
get shapeValue(): IonChipShape {
const shapeConfig = config.getObjectValue('IonChip.shape', 'round') as IonChipShape;
Expand All @@ -117,7 +117,7 @@ export class Chip implements ComponentInterface {

/**
* Gets the chip size. Uses the `size` property if set, otherwise
* checks the theme config and falls back to 'large' if neither is provided.
* checks the theme config. Defaults to `large` if neither is set.
*/
get sizeValue(): IonChipSize {
const sizeConfig = config.getObjectValue('IonChip.size', 'large') as IonChipSize;
Expand Down
249 changes: 0 additions & 249 deletions core/src/components/progress-bar/progress-bar.common.scss

This file was deleted.

Loading
Loading