css-zero 0.0.87 → 0.0.88

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9168f8d1372487bab5e744a8c000ec2cc3d4c9ed5feed65a9d781042f120e249
4
- data.tar.gz: bc5fb02ebbc7525025b1a5a4ab69b9a2ad41941d5233e2df018d710fce3fd352
3
+ metadata.gz: 6f20c3843535ad4d32cab0c21e7811348fb80b10912bbcbe473529087025c992
4
+ data.tar.gz: 313245a13b9bcbb3be95d251aa9e9abed429193dba4e34973a49d58b45fd8c20
5
5
  SHA512:
6
- metadata.gz: 3d26011763529941789b1b12e10b4e3e40988ab554fc6b9683df16bdf943caa4a0e2404c3303ac436b786ddaca139c52843f0bacb6aa16fa9ddc8d8ba1bd490a
7
- data.tar.gz: ce390f1eb3dc6af677044d60182926afad29c302cb2f2180ad2172bb31743edaaac166857e7f72a3f6be9b313918fc29424c67f5789e44e6c0c08152435c89f7
6
+ metadata.gz: b2feb534627b74ef9179992852b27f92c051d27215dd715d0c4bccd5292a1b1c3a13374e365fc834d9ad8b038fa8545a5a2532aa8aae9a3ebfef7322ea014576
7
+ data.tar.gz: 621c3f0c6988b6336afe125eab72198d97a1d7911b2174e190b51cdcf5de763a400074857f877447f7e28d15f8ab7a6906c9e799ffa684ab5033ba6b2b762101
@@ -1,3 +1,3 @@
1
1
  module CssZero
2
- VERSION = "0.0.87"
2
+ VERSION = "0.0.88"
3
3
  end
@@ -1,5 +1,5 @@
1
1
  import { Controller } from "@hotwired/stimulus"
2
- import { FetchRequest } from "https://cdn.jsdelivr.net/npm/@rails/request.js@0.0.11/+esm"
2
+ import { FetchRequest } from "https://esm.sh/@rails/request.js@0.0.11?standalone"
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.jsdelivr.net/npm/chart.js@4.4.7/+esm"
2
+ import { Chart, registerables } from "https://esm.sh/chart.js@4.4.7?standalone"
3
3
 
4
4
  Chart.register(...registerables)
5
5
 
@@ -1,6 +1,6 @@
1
1
  import { Controller } from "@hotwired/stimulus"
2
- import { get } from "https://cdn.jsdelivr.net/npm/@rails/request.js@0.0.11/+esm"
3
- import TomSelect from "https://cdn.jsdelivr.net/npm/tom-select@2.4.1/+esm"
2
+ import { get } from "https://esm.sh/@rails/request.js@0.0.11?standalone"
3
+ import TomSelect from "https://esm.sh/tom-select@2.4.1?standalone"
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,6 +1,6 @@
1
1
  import { Controller } from "@hotwired/stimulus"
2
- import debounce from "https://cdn.jsdelivr.net/npm/lodash.debounce@4.0.8/+esm"
3
- import Combobox from "https://cdn.jsdelivr.net/npm/@github/combobox-nav@3.0.1/+esm"
2
+ import debounce from "https://esm.sh/lodash.debounce@4.0.8?standalone"
3
+ import Combobox from "https://esm.sh/@github/combobox-nav@3.0.1?standalone"
4
4
 
5
5
  export default class extends Controller {
6
6
  static targets = [ "input", "list" ]
@@ -1,5 +1,5 @@
1
1
  import { Controller } from "@hotwired/stimulus"
2
- import debounce from "https://cdn.jsdelivr.net/npm/lodash.debounce@4.0.8/+esm"
2
+ import debounce from "https://esm.sh/lodash.debounce@4.0.8?standalone"
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.jsdelivr.net/npm/flatpickr@4.6.13/+esm"
2
+ import flatpickr from "https://esm.sh/flatpickr@4.6.13?standalone"
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 Inputmask from "https://cdn.jsdelivr.net/npm/inputmask@5.0.9/+esm"
2
+ import Inputmask from "https://esm.sh/inputmask@5.0.9?standalone"
3
3
 
4
4
  export default class extends Controller {
5
5
  static values = {
@@ -1,5 +1,5 @@
1
1
  import { Controller } from "@hotwired/stimulus"
2
- import { computePosition, flip, shift, offset, autoUpdate } from "https://cdn.jsdelivr.net/npm/@floating-ui/dom@1.6.13/+esm"
2
+ import { computePosition, flip, shift, offset, autoUpdate } from "https://esm.sh/@floating-ui/dom@1.6.13?standalone"
3
3
 
4
4
  export default class extends Controller {
5
5
  static targets = [ "button", "menu" ]
@@ -1,6 +1,6 @@
1
1
  import { Controller } from "@hotwired/stimulus"
2
- import { put } from "https://cdn.jsdelivr.net/npm/@rails/request.js@0.0.11/+esm"
3
- import Sortable from "https://cdn.jsdelivr.net/npm/sortablejs@1.15.6/+esm"
2
+ import { put } from "https://esm.sh/@rails/request.js@0.0.11?standalone"
3
+ import Sortable from "https://esm.sh/sortablejs@1.15.6?standalone"
4
4
 
5
5
  export default class extends Controller {
6
6
  static values = { url: String, group: String, handle: String }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: css-zero
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.87
4
+ version: 0.0.88
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lázaro Nixon