Skip to content

Commit 85a0334

Browse files
authored
Merge branch 'vnext' into sstoychev/improve-gtm-implementation
2 parents 05b91ec + 09ecc13 commit 85a0334

30 files changed

Lines changed: 1287 additions & 1043 deletions

docs/angular/src/content/en/components/button.mdx

Lines changed: 0 additions & 788 deletions
This file was deleted.

docs/angular/src/content/en/components/dialog.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ $my-dialog-theme: dialog-theme(
294294
```
295295

296296
<DocsAside type="info">
297-
In order to style any additional components that are used as part of the dialog window's content (such as the [`IgxButton`](/button)), an additional theme should be created that is specific to the respective component and is placed under the dialog window's scope only (so it does not affect the rest of the application).
297+
In order to style any additional components that are used as part of the dialog window's content (such as the [`IgxButton`](./inputs/button.mdx)), an additional theme should be created that is specific to the respective component and is placed under the dialog window's scope only (so it does not affect the rest of the application).
298298
</DocsAside>
299299

300300
```scss

docs/angular/src/content/en/components/list.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ toggleFavorite(item: IgxListItem) {
300300
}
301301
```
302302

303-
Let's also allow the user to choose the size of the list by using the `--ig-size` CSS custom property. We will do this by importing the `IgxButtonGroupModule` and using the [**IgxButtonGroup**](/components/inputs/button-group) to display all size values. This way whenever one gets selected, we will update the **size** of the list.
303+
Let's also allow the user to choose the size of the list by using the `--ig-size` CSS custom property. We will do this by importing the `IgxButtonGroupModule` and using the [**IgxButtonGroup**](/inputs/button-group) to display all size values. This way whenever one gets selected, we will update the **size** of the list.
304304

305305
```typescript
306306
// app.module.ts

docs/angular/src/content/en/components/themes/misc/angular-material-theming.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ Related topics:
415415
- [Component Themes](../sass/component-themes.mdx)
416416
- [Typography](../sass/typography.mdx)
417417
- [Avatar Component](../../layouts/avatar.mdx)
418-
- [Button Component](../../button.mdx)
418+
- [Button Component](inputs/button)
419419
- [Dialog Component](../../dialog.mdx)
420420
- [Icon Component](../../icon.mdx)
421421
- [Expansion Panel Component](../../expansion-panel.mdx)

docs/angular/src/content/en/components/themes/misc/bootstrap-theming.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ Ignite UI for Angular exposes four default type scales for each of its themes, w
368368
- [Component Themes](/themes/sass/component-themes)
369369
- [Typography](/themes/sass/typography)
370370
- [Avatar Component](../../layouts/avatar.mdx)
371-
- [Button Component](/button)
371+
- [Button Component](inputs/button)
372372
- [Dialog Component](/dialog)
373373
- [Icon Component](/icon)
374374
- [List Component](/list)

docs/angular/src/content/en/components/themes/roundness.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Many Ignite UI components have predefined minimum and maximum border-radius valu
2020
When you set `--ig-radius-factor` to 0, the component uses its minimum border-radius and will appear more block-like with sharp corners. When set to 1, the component uses its maximum predefined border-radius and will appear rounded.
2121

2222
Here is a list of the components that have predefined minimum and maximum border-radius values and can be modified using the `--ig-radius-factor` variable: <br/>
23-
[Action Strip](/action-strip)[Button](/button)[Button Group](/components/inputs/button-group)[Calendar](/calendar)[Card](/card)[Carousel](/carousel)[Checkbox](/checkbox)[Chip](/chip)[Combo](/combo)[Date Picker](/date-picker)[Date Range Picker](/date-range-picker)[Grid](/grid/grid)[Input Group](/input-group)[Linear Progress](/linear-progress)[List](/list)[Month Picker](/month-picker)[Navigation Drawer](/navdrawer)[Radio](/radio-button)[Ripple](/ripple)[Snackbar](/snackbar)[Switch](/switch)[Toast](/toast)
23+
[Action Strip](/action-strip)[Button](inputs/button)[Button Group](/inputs/button-group)[Calendar](/calendar)[Card](/card)[Carousel](/carousel)[Checkbox](/checkbox)[Chip](/chip)[Combo](/combo)[Date Picker](/date-picker)[Date Range Picker](/date-range-picker)[Grid](/grid/grid)[Input Group](/input-group)[Linear Progress](/linear-progress)[List](/list)[Month Picker](/month-picker)[Navigation Drawer](/navdrawer)[Radio](/radio-button)[Ripple](/ripple)[Snackbar](/snackbar)[Switch](/switch)[Toast](/toast)
2424

2525
## Usage
2626

docs/angular/src/content/en/components/time-picker.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ $my-time-picker-theme: time-picker-theme(
408408
```
409409

410410
<DocsAside type="info">
411-
In order to style any additional components that are used as part of the time picker window's content (such as the [`IgxButton`](/button)), an additional theme should be created that is specific to the respective component and is placed under the dialog window's scope only (so it does not affect the rest of the application).
411+
In order to style any additional components that are used as part of the time picker window's content (such as the [`IgxButton`](./inputs/button.mdx)), an additional theme should be created that is specific to the respective component and is placed under the dialog window's scope only (so it does not affect the rest of the application).
412412
</DocsAside>
413413

414414
Since the time picker window uses the [`IgxOverlayService`](/overlay), in order for our custom theme to reach down the time picker window that we want to style, we will provide a specific outlet where the dialog window will be placed in the DOM when it is visible.

docs/angular/src/content/en/components/toc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1979,7 +1979,7 @@
19791979
},
19801980
{
19811981
"name": "Button",
1982-
"href": "button.mdx"
1982+
"href": "inputs/button.mdx"
19831983
},
19841984
{
19851985
"name": "Button Group",

docs/angular/src/content/en/components/tooltip.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ $dark-tooltip: tooltip-theme(
486486
```
487487

488488
<DocsAside type="info">
489-
In order to style any additional components that are used as part of the tooltip's content (such as [`IgxButton`](/button), [`IgxSwitch`](/switch), etc.), an additional theme should be created that is specific to the respective component and placed under the tooltip's scope only (so it does not affect the rest of the application).
489+
In order to style any additional components that are used as part of the tooltip's content (such as [`IgxButton`](./inputs/button.mdx), [`IgxSwitch`](/switch), etc.), an additional theme should be created that is specific to the respective component and placed under the tooltip's scope only (so it does not affect the rest of the application).
490490
</DocsAside>
491491

492492
Since the tooltip uses the [`IgxOverlayService`](/overlay), in order for our custom theme to reach down the tooltip that we want to style, we will provide a specific outlet where the tooltip will be placed in the DOM when it is visible.

docs/angular/src/content/en/grids_templates/row-editing.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,9 +320,9 @@ If you want the buttons to be part of the keyboard navigation, then each on of t
320320
Using the [Ignite UI for Angular Theme Library](/themes), we can greatly alter the Row Editing overlay.
321321
The Row Editing overlay is a composite element - its UI is comprised of a couple of other components:
322322
- [`igx-banner`](/banner) in order to render its contents
323-
- [`igx-button`](/button)s are rendered in the default template (for the `Done` and `Cancel` buttons).
323+
- [`igx-button`](inputs/button)s are rendered in the default template (for the `Done` and `Cancel` buttons).
324324

325-
In the below example, we will make use of those two components' styling options, [`button styling`](/button#styling) & [`banner-styling`](/banner#styling), to customize the experience of our {ComponentName}'s Row Editing.
325+
In the below example, we will make use of those two components' styling options, [`button styling`](inputs/button#styling) & [`banner-styling`](/banner#styling), to customize the experience of our {ComponentName}'s Row Editing.
326326
We will also style the current cell's editor and background to make it more distinct.
327327

328328
<ComponentBlock for="Grid, TreeGrid, HierarchicalGrid">

0 commit comments

Comments
 (0)