-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into cherry-pick_c862bcde12ef41fb92c63ba071e5d191…
…c6c31502_1726599378437
- Loading branch information
Showing
123 changed files
with
4,281 additions
and
3,406 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
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 |
---|---|---|
|
@@ -119,5 +119,6 @@ | |
} | ||
} | ||
}, | ||
"implicitDependencies": ["eslint-config"], | ||
"tags": [] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,10 @@ | |
margin: 5px; | ||
} | ||
|
||
#content { | ||
overflow-y: auto; | ||
} | ||
|
||
#controls { | ||
position: sticky; | ||
top: 0; | ||
|
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
156 changes: 156 additions & 0 deletions
156
apps/code-examples/src/app/code-examples/ag-grid/data-entry-grid/focus/data.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 |
---|---|---|
@@ -0,0 +1,156 @@ | ||
export interface AutocompleteOption { | ||
id: string; | ||
name: string; | ||
} | ||
|
||
export const DEPARTMENTS = [ | ||
{ | ||
id: '1', | ||
name: 'Marketing', | ||
}, | ||
{ | ||
id: '2', | ||
name: 'Sales', | ||
}, | ||
{ | ||
id: '3', | ||
name: 'Engineering', | ||
}, | ||
{ | ||
id: '4', | ||
name: 'Customer Support', | ||
}, | ||
]; | ||
|
||
export const JOB_TITLES: Record<string, AutocompleteOption[]> = { | ||
Marketing: [ | ||
{ | ||
id: '1', | ||
name: 'Social Media Coordinator', | ||
}, | ||
{ | ||
id: '2', | ||
name: 'Blog Manager', | ||
}, | ||
{ | ||
id: '3', | ||
name: 'Events Manager', | ||
}, | ||
], | ||
Sales: [ | ||
{ | ||
id: '4', | ||
name: 'Business Development Representative', | ||
}, | ||
{ | ||
id: '5', | ||
name: 'Account Executive', | ||
}, | ||
], | ||
Engineering: [ | ||
{ | ||
id: '6', | ||
name: 'Software Engineer', | ||
}, | ||
{ | ||
id: '7', | ||
name: 'Senior Software Engineer', | ||
}, | ||
{ | ||
id: '8', | ||
name: 'Principal Software Engineer', | ||
}, | ||
{ | ||
id: '9', | ||
name: 'UX Designer', | ||
}, | ||
{ | ||
id: '10', | ||
name: 'Product Manager', | ||
}, | ||
], | ||
'Customer Support': [ | ||
{ | ||
id: '11', | ||
name: 'Customer Support Representative', | ||
}, | ||
{ | ||
id: '12', | ||
name: 'Account Manager', | ||
}, | ||
{ | ||
id: '13', | ||
name: 'Customer Support Specialist', | ||
}, | ||
], | ||
}; | ||
|
||
export interface AgGridDemoRow { | ||
selected?: boolean; | ||
name: string; | ||
age: number; | ||
startDate: Date; | ||
endDate?: Date; | ||
department: AutocompleteOption; | ||
jobTitle?: AutocompleteOption; | ||
} | ||
|
||
export const AG_GRID_DEMO_DATA: AgGridDemoRow[] = [ | ||
{ | ||
selected: true, | ||
name: 'Billy Bob', | ||
age: 55, | ||
startDate: new Date('12/1/1994'), | ||
department: DEPARTMENTS[3], | ||
jobTitle: JOB_TITLES['Customer Support'][1], | ||
}, | ||
{ | ||
selected: false, | ||
name: 'Jane Deere', | ||
age: 33, | ||
startDate: new Date('7/15/2009'), | ||
department: DEPARTMENTS[2], | ||
jobTitle: JOB_TITLES['Engineering'][2], | ||
}, | ||
{ | ||
selected: false, | ||
name: 'John Doe', | ||
age: 38, | ||
startDate: new Date('9/1/2017'), | ||
endDate: new Date('9/30/2017'), | ||
department: DEPARTMENTS[1], | ||
}, | ||
{ | ||
selected: false, | ||
name: 'David Smith', | ||
age: 51, | ||
startDate: new Date('1/1/2012'), | ||
endDate: new Date('6/15/2018'), | ||
department: DEPARTMENTS[2], | ||
jobTitle: JOB_TITLES['Engineering'][4], | ||
}, | ||
{ | ||
selected: true, | ||
name: 'Emily Johnson', | ||
age: 41, | ||
startDate: new Date('1/15/2014'), | ||
department: DEPARTMENTS[0], | ||
jobTitle: JOB_TITLES['Marketing'][2], | ||
}, | ||
{ | ||
selected: false, | ||
name: 'Nicole Davidson', | ||
age: 22, | ||
startDate: new Date('11/1/2019'), | ||
department: DEPARTMENTS[2], | ||
jobTitle: JOB_TITLES['Engineering'][0], | ||
}, | ||
{ | ||
selected: false, | ||
name: 'Carl Roberts', | ||
age: 23, | ||
startDate: new Date('11/1/2019'), | ||
department: DEPARTMENTS[2], | ||
jobTitle: JOB_TITLES['Engineering'][3], | ||
}, | ||
]; |
23 changes: 23 additions & 0 deletions
23
apps/code-examples/src/app/code-examples/ag-grid/data-entry-grid/focus/demo.component.html
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<sky-input-box | ||
labelText="Start here" | ||
helpPopoverContent="Then tab to the grid" | ||
stacked | ||
> | ||
<input type="text" /> | ||
</sky-input-box> | ||
<div class="sky-margin-stacked-md"> | ||
<sky-ag-grid-wrapper> | ||
<ag-grid-angular | ||
class="sky-ag-grid-editable" | ||
[gridOptions]="gridOptions" | ||
[rowData]="gridData" | ||
/> | ||
</sky-ag-grid-wrapper> | ||
</div> | ||
<sky-input-box | ||
labelText="Or start here" | ||
helpPopoverContent="Then tab backwards to the grid" | ||
stacked | ||
> | ||
<input type="text" /> | ||
</sky-input-box> |
Oops, something went wrong.