css-zero 0.0.70 → 0.0.72

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6b0f3e711287beb458faf297d83d9ea04318425f54ed6548be547a987d1070c5
4
- data.tar.gz: d46f8c2baea4bf522bfb7ebe8a44da65b39db2695a963c9d1ba06761a31d35cb
3
+ metadata.gz: de1a6d3047d73f8ae2a0a2ad47a652aff2f1b5fb06f3591d6a6e6918a6bfd653
4
+ data.tar.gz: 8584bbf7e56ba6eddf01510a09c1fb92542047a38105bacb4dc07fe3551faff6
5
5
  SHA512:
6
- metadata.gz: b14d8872110a600f24be84cf14797504384f1a2209a5c0986eabaa3317aeda8200174f5d54433ba522b4b6f53352aed9a6ebe6e14f56f1d7a89deb880793e9a7
7
- data.tar.gz: 94e9a9698d47d6c4118de58819e671e5520ce06fa388b23cd387efc97fde53d56ce3988afe2d16e27173afe58edb58bd04e7bd66f6fd3c7edb7b2825d7a67288
6
+ metadata.gz: 735e699d59bf930e796d57c6e254d0c76c67492aa95f27cf710aa7e8c585d03820118a43abeff98bb008919c24a0d88e3b691821639992ea50715adb3e59fd83
7
+ data.tar.gz: 292b9514e7e448af1f8cc0da78ed4c9fdc7de554015d5b77851672c93f7d04474926df1a02c5afbcdd05a2bf5d47acafef84208f5e2a0b4e5f9cabd2318f3691
@@ -1,3 +1,3 @@
1
1
  module CssZero
2
- VERSION = "0.0.70"
2
+ VERSION = "0.0.72"
3
3
  end
@@ -3,8 +3,7 @@
3
3
  grid-template-areas: "header header" "sidebar main";
4
4
  grid-template-columns: var(--sidebar-width, 0) 1fr;
5
5
  grid-template-rows: auto 1fr;
6
- min-block-size: 100dvh;
7
- max-block-size: 100dvh;
6
+ block-size: 100dvh;
8
7
 
9
8
  @media (width >= 48rem) {
10
9
  --sidebar-border-width: var(--border);
@@ -23,13 +22,13 @@
23
22
  display: grid;
24
23
  grid-template-areas: "header" "main";
25
24
  grid-template-rows: auto 1fr;
26
- min-block-size: 100dvh;
25
+ block-size: 100dvh;
27
26
  }
28
27
 
29
28
  .centered-layout {
30
29
  display: grid;
31
30
  place-items: center;
32
- min-block-size: 100dvh;
31
+ block-size: 100dvh;
33
32
  }
34
33
 
35
34
  .container {
@@ -40,15 +39,12 @@
40
39
 
41
40
  #header {
42
41
  align-items: center;
43
- background-color: var(--color-bg);
44
42
  border-block-end-width: var(--border);
45
43
  block-size: var(--size-16);
46
44
  display: flex;
47
45
  gap: var(--size-4);
48
46
  grid-area: header;
49
- inset-block-start: 0;
50
47
  padding-inline: var(--size-4);
51
- position: sticky;
52
48
 
53
49
  @media (width >= 64rem) {
54
50
  padding-inline: var(--size-6);
@@ -70,7 +66,7 @@
70
66
  flex-direction: column;
71
67
  gap: var(--size-4);
72
68
  grid-area: main;
73
- overflow-y: auto;
69
+ overflow: auto;
74
70
  padding: var(--size-4);
75
71
 
76
72
  @media (width >= 64rem) {
@@ -99,3 +99,8 @@
99
99
  .invalid .ts-control {
100
100
  border-color: var(--color-negative);
101
101
  }
102
+
103
+ [data-controller*="combobox"] {
104
+ clip: rect(0 0 0 0);
105
+ position: absolute;
106
+ }
@@ -1,5 +1,5 @@
1
1
  import { Controller } from "@hotwired/stimulus"
2
- import { FetchRequest } from "https://cdn.skypack.dev/@rails/request.js@0.0.11"
2
+ import { FetchRequest } from "https://cdn.skypack.dev/@rails/request.js@0.0.11?min"
3
3
 
4
4
  const AUTOSAVE_INTERVAL = 3000
5
5
 
@@ -1,5 +1,5 @@
1
1
  import { Controller } from "@hotwired/stimulus"
2
- import { Chart, registerables } from "https://cdn.skypack.dev/chart.js@4.4.6"
2
+ import { Chart, registerables } from "https://cdn.skypack.dev/chart.js@4.4.6?min"
3
3
 
4
4
  Chart.register(...registerables)
5
5
 
@@ -28,4 +28,4 @@ export default class extends Controller {
28
28
  get #settings() {
29
29
  return { type: this.typeValue, data: this.dataValue, options: this.optionsValue }
30
30
  }
31
- }
31
+ }
@@ -1,6 +1,6 @@
1
1
  import { Controller } from "@hotwired/stimulus"
2
- import { get } from "https://cdn.skypack.dev/@rails/request.js@0.0.11"
3
- import TomSelect from "https://cdn.skypack.dev/tom-select@2.3.1"
2
+ import { get } from "https://cdn.skypack.dev/@rails/request.js@0.0.11?min"
3
+ import TomSelect from "https://cdn.skypack.dev/tom-select@2.3.1?min"
4
4
 
5
5
  export default class extends Controller {
6
6
  static values = { url: String, optionCreate: { type: String, default: "Add" }, noResults: { type: String, default: "No results found" } }
@@ -1,5 +1,5 @@
1
1
  import { Controller } from "@hotwired/stimulus"
2
- import { debounce } from "https://cdn.skypack.dev/es-toolkit@v1.27.0/function"
2
+ import { debounce } from "https://cdn.skypack.dev/lodash-es@4.17.21?min"
3
3
 
4
4
  export default class extends Controller {
5
5
  static targets = [ "input", "copyIcon", "successIcon" ]
@@ -1,5 +1,5 @@
1
1
  import { Controller } from "@hotwired/stimulus"
2
- import flatpickr from "https://cdn.skypack.dev/flatpickr@4.6.13"
2
+ import flatpickr from "https://cdn.skypack.dev/flatpickr@4.6.13?min"
3
3
 
4
4
  export default class extends Controller {
5
5
  static targets = [ "details" ]
@@ -1,5 +1,5 @@
1
1
  import { Controller } from "@hotwired/stimulus"
2
- import { debounce } from "https://cdn.skypack.dev/es-toolkit@v1.27.0/function"
2
+ import { debounce } from "https://cdn.skypack.dev/lodash-es@4.17.21?min"
3
3
 
4
4
  export default class extends Controller {
5
5
  static targets = [ "list" ]
@@ -1,5 +1,5 @@
1
1
  import { Controller } from "@hotwired/stimulus"
2
- import Inputmask from "https://cdn.skypack.dev/inputmask@5.0.9"
2
+ import Inputmask from "https://cdn.skypack.dev/inputmask@5.0.9?min"
3
3
 
4
4
  export default class extends Controller {
5
5
  static values = {
@@ -1,6 +1,6 @@
1
1
  import { Controller } from "@hotwired/stimulus"
2
- import { put } from "https://cdn.skypack.dev/@rails/request.js@0.0.11"
3
- import Sortable from "https://cdn.skypack.dev/sortablejs"
2
+ import { put } from "https://cdn.skypack.dev/@rails/request.js@0.0.11?min"
3
+ import Sortable from "https://cdn.skypack.dev/sortablejs?min"
4
4
 
5
5
  export default class extends Controller {
6
6
  static values = { url: String, group: String, handle: String }
@@ -1,5 +1,5 @@
1
1
  import { Controller } from "@hotwired/stimulus"
2
- import tippy from "https://cdn.skypack.dev/tippy.js@6.3.7"
2
+ import tippy from "https://cdn.skypack.dev/tippy.js@6.3.7?min"
3
3
 
4
4
  export default class extends Controller {
5
5
  static values = { content: String }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: css-zero
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.70
4
+ version: 0.0.72
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lázaro Nixon
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-27 00:00:00.000000000 Z
11
+ date: 2024-11-29 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: lazaronixon@hotmail.com