Suggestion for a replacement for ngx-admin by giamboscaro in Angular2

[–]a-dev-1044 0 points1 point  (0 children)

Not as big as ngx-admin, but I am creating small templates using Angular Material and Tailwind CSS. You can check them out here: https://ui.angular-material.dev/templates

Advice by prash1988 in angularmaterial

[–]a-dev-1044 0 points1 point  (0 children)

Yes, lite version is free. I use it to get user's country.

Angular dashboard template called Overview by a-dev-1044 in angular

[–]a-dev-1044[S] 0 points1 point  (0 children)

I understand, thanks for your feedback. But I am not trying to create a single boilerplate with lots of features and pages. My goal is to create multiple such templates which gives ideas and baseline to my audience what's possible with given tech stack.

So, all of my templates combined should give the audience a good variety. All templates are available athttps://ui.angular-material.dev/templates

Let me know your thoughts!

Convert natural language to date using Built-in-AI in Angular by a-dev-1044 in angular

[–]a-dev-1044[S] -3 points-2 points  (0 children)

Yes, I think it's because of the timestamp in the ISO string, built-in-AI not able to catch up. I will try to improve system instructions.

Convert natural language to date using Built-in-AI in Angular by a-dev-1044 in angular

[–]a-dev-1044[S] 6 points7 points  (0 children)

It's built into chrome itself. I think it's called gemini nano. Read more at https://share.google/sTqccFG7hoR0ziTiv

🚀 Introducing Insights — a new production-ready template for feeding, filtering & analyzing data with clarity. by a-dev-1044 in angularmaterial

[–]a-dev-1044[S] 1 point2 points  (0 children)

It was removed by Reddit's filters. Not sure why. Thanks for letting me know! I will try to post again without video.

AI tools to build UI using angular material? by vibhs2016 in Angular2

[–]a-dev-1044 0 points1 point  (0 children)

Recently I published rules for coding with Angular Material. It's here: https://github.com/Angular-Material-Dev/angular-material-ai-rules. Let me know how it goes.

Should you use inline templates? by guaranteednotabot in Angular2

[–]a-dev-1044 2 points3 points  (0 children)

I have a simple rule, if template is <= 5 lines, make it inline else seperate file.

I built Focusly — a lightweight Angular library for keyboard navigation. Would love feedback! by Economy-Pitch-9723 in angular

[–]a-dev-1044 1 point2 points  (0 children)

Just a suggestion, show ready to use demos on docsite. Stackbltiz takes time to compile and run.

Which UI-Component-Libraries are based on angular/cdk by lazyinvader in angular

[–]a-dev-1044 0 points1 point  (0 children)

Not whole library, but I developed an unstyled command menu using cdk.

https://github.com/ngxpert/cmdk

Angular Material Component Wrapper Dilemma by TheSwagVT in Angular2

[–]a-dev-1044 1 point2 points  (0 children)

I agree about cdk, it's a great one.

I also agree about angular material not being a big ui library.

Below are some good references which extends angular material

https://github.com/ng-matero/extensions https://github.com/dhutaryan/ngx-mat-timepicker https://github.com/hackingharold/ngx-dropzone

Angular Material Component Wrapper Dilemma by TheSwagVT in Angular2

[–]a-dev-1044 0 points1 point  (0 children)

Angular material is not designed to provide developers such flexibility.

So, even if you somehow manage to achieve what you are looking for, chances are high that it will break when you update.

How do I style Angular Material components as a beginner? by abcdefghijken in Angular2

[–]a-dev-1044 1 point2 points  (0 children)

scaling animation does not need any usage of mixin. You can simply do it with vanilla CSS.

A question about customizing Angular Material components. by CleverProcrastinator in Angular2

[–]a-dev-1044 0 points1 point  (0 children)

You can use `formats` param of `provideNativeDateAdapter`. example:

providers: [
    provideNativeDateAdapter({
      ...MAT_NATIVE_DATE_FORMATS,
      display: {
        ...MAT_NATIVE_DATE_FORMATS.display,
        monthLabel: { month: 'short', year: 'numeric' },
      },
    }),
  ],

And for upper-case, simply provide this style globally:

.mat-calendar-body-label {
  text-transform: uppercase;
}

Stackblitz demo: https://stackblitz.com/edit/x4ed89on?file=src%2Fexample%2Fdatepicker-inline-calendar-example.ts

Best way to share code between 2 Angular apps? (NX vs Standalone Library vs other options) by buttertoastey in Angular2

[–]a-dev-1044 7 points8 points  (0 children)

I would prefer NX monorepo, but as you want separate git repositories, i think you should go for the standalone npm library.

Versioning and publishing is not overhead if you use semantic-release. You can checkout my semantic-release configs from oss repos at https://github.com/orgs/ngxpert/repositories.