Skip to content

Commit

Permalink
chore: build
Browse files Browse the repository at this point in the history
  • Loading branch information
marianfoo committed Nov 16, 2023
1 parent 35c084f commit 3ac38b2
Show file tree
Hide file tree
Showing 28,799 changed files with 2,719,757 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 1 addition & 0 deletions docs/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bestofui5.org
124 changes: 124 additions & 0 deletions docs/Component-dbg.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions docs/Component.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions docs/Component.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions docs/_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include: ["_chunks"]
80 changes: 80 additions & 0 deletions docs/control/BarChart-dbg.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 33 additions & 0 deletions docs/control/BarChart.gen.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import { CSSColor } from "sap/ui/core/library";
import ChartRecord from "com/myorg/myapp/control/ChartRecord";
import { $ControlSettings } from "sap/ui/core/Control";

declare module "./BarChart" {
/**
* Interface defining the settings object used in constructor calls
*/
interface $BarChartSettings extends $ControlSettings {
title?: string;
color?: CSSColor;
records?: ChartRecord[] | ChartRecord;
}

export default interface BarChart {
// property: title
getTitle(): string;
setTitle(title: string): this;

// property: color
getColor(): CSSColor;
setColor(color: CSSColor): this;

// aggregation: records
getRecords(): ChartRecord[];
addRecord(records: ChartRecord): this;
insertRecord(records: ChartRecord, index: number): this;
removeRecord(records: number | string | ChartRecord): this;
removeAllRecords(): ChartRecord[];
indexOfRecord(records: ChartRecord): number;
destroyRecords(): this;
}
}
2 changes: 2 additions & 0 deletions docs/control/BarChart.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions docs/control/BarChart.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions docs/control/ChartRecord-dbg.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions docs/control/ChartRecord.gen.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import { $ElementSettings } from "sap/ui/core/Element";

declare module "./ChartRecord" {
/**
* Interface defining the settings object used in constructor calls
*/
interface $ChartRecordSettings extends $ElementSettings {
label?: string;
value?: number;
}

export default interface ChartRecord {
// property: label
getLabel(): string;
setLabel(label: string): this;

// property: value
getValue(): number;
setValue(value: number): this;
}
}
2 changes: 2 additions & 0 deletions docs/control/ChartRecord.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3ac38b2

Please sign in to comment.