vitat-css 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (156) hide show
  1. checksums.yaml +4 -4
  2. data/.DS_Store +0 -0
  3. data/.gitignore +146 -8
  4. data/.idea/.gitignore +5 -0
  5. data/.idea/modules.xml +8 -0
  6. data/.idea/vcs.xml +6 -0
  7. data/.idea/vitat-design-system.iml +12 -0
  8. data/.vscode/settings.json +3 -0
  9. data/HTML/.DS_Store +0 -0
  10. data/HTML/Components/Arabescos.html +87 -0
  11. data/HTML/Components/Buttons.html +105 -0
  12. data/HTML/Components/Card.html +337 -0
  13. data/HTML/Components/CardApp.html +201 -0
  14. data/HTML/Components/Inputs.html +105 -0
  15. data/HTML/Components/Lista.html +106 -0
  16. data/HTML/Components/Pagination.html +218 -0
  17. data/HTML/Components/Pills.html +94 -0
  18. data/HTML/Components/Revisado.html +163 -0
  19. data/JS/prism.js +12 -0
  20. data/bootstrap/scss/_accordion.scss +118 -0
  21. data/bootstrap/scss/_alert.scss +57 -0
  22. data/bootstrap/scss/_badge.scss +29 -0
  23. data/bootstrap/scss/_breadcrumb.scss +28 -0
  24. data/bootstrap/scss/_button-group.scss +139 -0
  25. data/bootstrap/scss/_buttons.scss +111 -0
  26. data/bootstrap/scss/_card.scss +216 -0
  27. data/bootstrap/scss/_carousel.scss +229 -0
  28. data/bootstrap/scss/_close.scss +40 -0
  29. data/bootstrap/scss/_containers.scss +41 -0
  30. data/bootstrap/scss/_dropdown.scss +240 -0
  31. data/bootstrap/scss/_forms.scss +9 -0
  32. data/bootstrap/scss/_functions.scss +302 -0
  33. data/bootstrap/scss/_grid.scss +33 -0
  34. data/bootstrap/scss/_helpers.scss +9 -0
  35. data/bootstrap/scss/_images.scss +42 -0
  36. data/bootstrap/scss/_list-group.scss +174 -0
  37. data/bootstrap/scss/_mixins.scss +43 -0
  38. data/bootstrap/scss/_modal.scss +209 -0
  39. data/bootstrap/scss/_nav.scss +139 -0
  40. data/bootstrap/scss/_navbar.scss +335 -0
  41. data/bootstrap/scss/_offcanvas.scss +83 -0
  42. data/bootstrap/scss/_pagination.scss +64 -0
  43. data/bootstrap/scss/_placeholders.scss +51 -0
  44. data/bootstrap/scss/_popover.scss +158 -0
  45. data/bootstrap/scss/_progress.scss +48 -0
  46. data/bootstrap/scss/_reboot.scss +625 -0
  47. data/bootstrap/scss/_root.scss +54 -0
  48. data/bootstrap/scss/_spinners.scss +69 -0
  49. data/bootstrap/scss/_tables.scss +155 -0
  50. data/bootstrap/scss/_toasts.scss +51 -0
  51. data/bootstrap/scss/_tooltip.scss +115 -0
  52. data/bootstrap/scss/_transitions.scss +27 -0
  53. data/bootstrap/scss/_type.scss +104 -0
  54. data/bootstrap/scss/_utilities.scss +630 -0
  55. data/bootstrap/scss/_variables.scss +1641 -0
  56. data/bootstrap/scss/bootstrap-grid.scss +67 -0
  57. data/bootstrap/scss/bootstrap-reboot.scss +13 -0
  58. data/bootstrap/scss/bootstrap-utilities.scss +18 -0
  59. data/bootstrap/scss/bootstrap.scss +53 -0
  60. data/bootstrap/scss/forms/_floating-labels.scss +63 -0
  61. data/bootstrap/scss/forms/_form-check.scss +152 -0
  62. data/bootstrap/scss/forms/_form-control.scss +219 -0
  63. data/bootstrap/scss/forms/_form-range.scss +91 -0
  64. data/bootstrap/scss/forms/_form-select.scss +72 -0
  65. data/bootstrap/scss/forms/_form-text.scss +11 -0
  66. data/bootstrap/scss/forms/_input-group.scss +121 -0
  67. data/bootstrap/scss/forms/_labels.scss +36 -0
  68. data/bootstrap/scss/forms/_validation.scss +12 -0
  69. data/bootstrap/scss/helpers/_clearfix.scss +3 -0
  70. data/bootstrap/scss/helpers/_colored-links.scss +12 -0
  71. data/bootstrap/scss/helpers/_position.scss +30 -0
  72. data/bootstrap/scss/helpers/_ratio.scss +26 -0
  73. data/bootstrap/scss/helpers/_stacks.scss +15 -0
  74. data/bootstrap/scss/helpers/_stretched-link.scss +15 -0
  75. data/bootstrap/scss/helpers/_text-truncation.scss +7 -0
  76. data/bootstrap/scss/helpers/_visually-hidden.scss +8 -0
  77. data/bootstrap/scss/helpers/_vr.scss +8 -0
  78. data/bootstrap/scss/mixins/_alert.scss +11 -0
  79. data/bootstrap/scss/mixins/_backdrop.scss +14 -0
  80. data/bootstrap/scss/mixins/_border-radius.scss +78 -0
  81. data/bootstrap/scss/mixins/_box-shadow.scss +18 -0
  82. data/bootstrap/scss/mixins/_breakpoints.scss +127 -0
  83. data/bootstrap/scss/mixins/_buttons.scss +133 -0
  84. data/bootstrap/scss/mixins/_caret.scss +64 -0
  85. data/bootstrap/scss/mixins/_clearfix.scss +9 -0
  86. data/bootstrap/scss/mixins/_color-scheme.scss +7 -0
  87. data/bootstrap/scss/mixins/_container.scss +9 -0
  88. data/bootstrap/scss/mixins/_deprecate.scss +10 -0
  89. data/bootstrap/scss/mixins/_forms.scss +144 -0
  90. data/bootstrap/scss/mixins/_gradients.scss +47 -0
  91. data/bootstrap/scss/mixins/_grid.scss +151 -0
  92. data/bootstrap/scss/mixins/_image.scss +16 -0
  93. data/bootstrap/scss/mixins/_list-group.scss +24 -0
  94. data/bootstrap/scss/mixins/_lists.scss +7 -0
  95. data/bootstrap/scss/mixins/_pagination.scss +31 -0
  96. data/bootstrap/scss/mixins/_reset-text.scss +17 -0
  97. data/bootstrap/scss/mixins/_resize.scss +6 -0
  98. data/bootstrap/scss/mixins/_table-variants.scss +21 -0
  99. data/bootstrap/scss/mixins/_text-truncate.scss +8 -0
  100. data/bootstrap/scss/mixins/_transition.scss +26 -0
  101. data/bootstrap/scss/mixins/_utilities.scss +89 -0
  102. data/bootstrap/scss/mixins/_visually-hidden.scss +29 -0
  103. data/bootstrap/scss/utilities/_api.scss +47 -0
  104. data/bootstrap/scss/vendor/_rfs.scss +354 -0
  105. data/css/prism.css +4 -0
  106. data/css/style.css +6 -0
  107. data/gulpfile.js +35 -0
  108. data/img/.DS_Store +0 -0
  109. data/img/arrow-active.png +0 -0
  110. data/img/arrow-disable.png +0 -0
  111. data/img/arrow.png +0 -0
  112. data/img/close.png +0 -0
  113. data/img/phone.png +0 -0
  114. data/img/placeholder.png +0 -0
  115. data/img/placeholder_avatar.png +0 -0
  116. data/img/qr-code-loja.png +0 -0
  117. data/img/store_icon.png +0 -0
  118. data/index.html +33 -0
  119. data/install_nvm.sh +425 -0
  120. data/package-lock.json +4233 -0
  121. data/package.json +9 -0
  122. data/scss/.DS_Store +0 -0
  123. data/scss/guide/.DS_Store +0 -0
  124. data/scss/guide/_variables.scss +171 -0
  125. data/scss/guide/components/_animations.scss +8 -0
  126. data/scss/guide/components/_typography.scss +157 -0
  127. data/scss/guide/components/arabescos/arabescos.scss +47 -0
  128. data/scss/guide/components/buttons/btn.scss +26 -0
  129. data/scss/guide/components/buttons/btn__large.scss +10 -0
  130. data/scss/guide/components/buttons/btn__primary.scss +11 -0
  131. data/scss/guide/components/buttons/btn__secondary.scss +11 -0
  132. data/scss/guide/components/buttons/btn__tertiary.scss +11 -0
  133. data/scss/guide/components/cardapp/cardapp.scss +151 -0
  134. data/scss/guide/components/cards/card.scss +58 -0
  135. data/scss/guide/components/cards/card__horizontal.scss +35 -0
  136. data/scss/guide/components/cards/card__horizontal__small.scss +9 -0
  137. data/scss/guide/components/inputs/_checkbox.scss +45 -0
  138. data/scss/guide/components/inputs/_text.scss +8 -0
  139. data/scss/guide/components/lista/lista.scss +31 -0
  140. data/scss/guide/components/pagination/pagination.scss +81 -0
  141. data/scss/guide/components/pills/pill.scss +31 -0
  142. data/scss/guide/components/pills/pill__full.scss +8 -0
  143. data/scss/guide/components/pills/pill__secundary.scss +8 -0
  144. data/scss/guide/components/pills/pill__small.scss +8 -0
  145. data/scss/guide/components/revisado/revisado.scss +52 -0
  146. data/scss/guide/style.scss +96 -0
  147. metadata +147 -12
  148. data/CODE_OF_CONDUCT.md +0 -74
  149. data/Gemfile +0 -6
  150. data/LICENSE.txt +0 -21
  151. data/Rakefile +0 -2
  152. data/bin/console +0 -14
  153. data/bin/setup +0 -8
  154. data/lib/vitat/css/version.rb +0 -5
  155. data/lib/vitat/css.rb +0 -8
  156. data/vitat-css.gemspec +0 -41
data/LICENSE.txt DELETED
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2023 AmandavrVitat
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.
data/Rakefile DELETED
@@ -1,2 +0,0 @@
1
- require "bundler/gem_tasks"
2
- task :default => :spec
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "vitat/css"
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require "irb"
14
- IRB.start(__FILE__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here
@@ -1,5 +0,0 @@
1
- module Vitat
2
- module Css
3
- VERSION = "0.1.1"
4
- end
5
- end
data/lib/vitat/css.rb DELETED
@@ -1,8 +0,0 @@
1
- require "vitat/css/version"
2
-
3
- module Vitat
4
- module Css
5
- class Error < StandardError; end
6
- # Your code goes here...
7
- end
8
- end
data/vitat-css.gemspec DELETED
@@ -1,41 +0,0 @@
1
-
2
- lib = File.expand_path("../lib", __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require "vitat/css/version"
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "vitat-css"
8
- spec.version = Vitat::Css::VERSION
9
- spec.authors = ["Amandavr"]
10
- spec.email = ["amanda.rocha@vitat.com.br"]
11
-
12
- spec.summary = %q{Lib css para uso nos projetos em ruby da Vitat}
13
- spec.description = %q{Lib css para uso nos projetos em ruby da Vitat}
14
- spec.homepage = "https://vitat.com.br"
15
- spec.license = "MIT"
16
-
17
- # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
- # to allow pushing to a single host or delete this section to allow pushing to any host.
19
- # if spec.respond_to?(:metadata)
20
- # spec.metadata["allowed_push_host"] = "Atualizar texto"
21
-
22
- # spec.metadata["homepage_uri"] = spec.homepage
23
- # spec.metadata["source_code_uri"] = "https://github.com/sejavitat/vitat-design-system/tree/vitat-novos-negocios-webview"
24
- # spec.metadata["changelog_uri"] = "https://github.com/sejavitat/vitat-design-system/tree/vitat-novos-negocios-webview/changelog.md"
25
- # else
26
- # raise "RubyGems 2.0 or newer is required to protect against " \
27
- # "public gem pushes."
28
- # end
29
-
30
- # Specify which files should be added to the gem when it is released.
31
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
32
- spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
33
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
34
- end
35
- spec.bindir = "exe"
36
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
37
- spec.require_paths = ["lib"]
38
-
39
- spec.add_development_dependency "bundler", "~> 1.17"
40
- spec.add_development_dependency "rake", "~> 10.0"
41
- end