Code Monkey home page Code Monkey logo

Comments (6)

AlexMiniApps avatar AlexMiniApps commented on May 28, 2024

Hi, thanks for the advice. I will think about, because the library can have arbitrary amount of numbers

from angular-code-input.

danielehrhardt avatar danielehrhardt commented on May 28, 2024

Hi, thanks for the advice. I will think about, because the library can have arbitrary amount of numbers

Maybe a every option would be good.

Every 3. Every 2.
[][][]__[][][]__[][][]

from angular-code-input.

rozpuszczalny avatar rozpuszczalny commented on May 28, 2024

Hi, first of all, thanks Alex for the library, it helps a lot!

For anyone who might be interested in the spacings between inputs, you can do it via SCSS, like so:

code-input {

  // Change nth-child(2n) to whatever you want. 2n is every two inputs.
  // You could also do only one gap, by specifying after which field a gap should appear, e.g. 4
  &::ng-deep > span::nth-child(2n):not(:last-child) {
    --item-spacing: 24px; // Or whatever gap value you want
  }
}

You can extend it to e.g. include dash separators with some more SCSS magic:

code-input {
  &::ng-deep > span::nth-child(3n):not(:last-child) {
    --item-spacing: 20px;
    position: relative;

    &::after {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 5px;
      width: 10px;
      content: "-";
    }
  }
}

Note about dash separators: If someone pastes a code e.g. "0000-abcd" into the 8 characters long input, the code will be "0000-abc", as "-" will not be considered as a separator, but a part of code. Worth remembering 😉

from angular-code-input.

AlexMiniApps avatar AlexMiniApps commented on May 28, 2024

@rozpuszczalny Thank you for the workaround!

from angular-code-input.

rbalet avatar rbalet commented on May 28, 2024

@AlexMiniApps What about adding a css variable to each span ?

The would let anybody change the spacing as they wish, without having to use ng-deep or anything else.

image

Let me know and I'll do a pull-request

from angular-code-input.

AlexMiniApps avatar AlexMiniApps commented on May 28, 2024

@rbalet thanks for the suggestion, I will think about

from angular-code-input.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.