Skip to content

Commit d97f0ff

Browse files
authored
Merge pull request #12 from david-ui-org/Feature/M2
Feature: prepare stable version 1.0.0 with new components
2 parents b2b7058 + 07446ec commit d97f0ff

File tree

216 files changed

+14330
-753
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

216 files changed

+14330
-753
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# David UI Angular - Beta Version
1+
# David UI Angular - 1.0.0
22

33
### _The right choice for fast and easy UI development using tailwind css_
44

angular.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@
7777
"budgets": [
7878
{
7979
"type": "initial",
80-
"maximumWarning": "500kb",
81-
"maximumError": "1mb"
80+
"maximumWarning": "1mb",
81+
"maximumError": "2mb"
8282
},
8383
{
8484
"type": "anyComponentStyle",

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
"@angular-devkit/build-angular": "^16.2.2",
5151
"@angular/cli": "~16.2.2",
5252
"@angular/compiler-cli": "^16.2.0",
53+
"@material-tailwind/html": "^2.1.0",
5354
"@types/jasmine": "~4.3.0",
5455
"autoprefixer": "^10.4.15",
5556
"jasmine-core": "~4.6.0",

projects/consumer/sitemap-creator.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,14 @@ const routes = [
2323
'/docs/radiobutton',
2424
'/docs/select',
2525
'/docs/textarea',
26-
'/docs/typography'
26+
'/docs/button-group',
27+
'/docs/icon-button',
28+
'/docs/switch',
29+
'/docs/slider',
30+
'/docs/switch',
31+
'/docs/pagination',
32+
'/docs/chip',
33+
'/docs/collapse'
2734
// Add more routes as needed
2835
];
2936

projects/consumer/src/app/app-routing.module.ts

+2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ const routes: Routes = [
3838

3939
@NgModule({
4040
imports: [RouterModule.forRoot(routes, {
41+
anchorScrolling: 'enabled',
42+
scrollPositionRestoration: 'top',
4143

4244
})],
4345
exports: [RouterModule]

projects/consumer/src/app/app.module.ts

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ import { HeaderComponent } from './home/header/header.component';
1717
AppRoutingModule,
1818
SharedModule,
1919
DocsModule,
20-
FontAwesomeModule,
2120
],
2221
bootstrap: [AppComponent],
2322
providers: [

0 commit comments

Comments
 (0)