css-zero 0.0.86 → 0.0.87

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: 9db39d993375c71281634dcc6d4cf952d063cc91fa06a5dac1d570ed73970b4c
4
- data.tar.gz: b317d56e8be1be45f5eb781c8db8a776acd43f8cf6c49058758bc65ed5573fdb
3
+ metadata.gz: 9168f8d1372487bab5e744a8c000ec2cc3d4c9ed5feed65a9d781042f120e249
4
+ data.tar.gz: bc5fb02ebbc7525025b1a5a4ab69b9a2ad41941d5233e2df018d710fce3fd352
5
5
  SHA512:
6
- metadata.gz: 80cd9c9f10bd5dc571ebb119606cfc3c2555243157a85d1175054f3ebbed55524f5ee22d9a84e54de02eccc7d6e1855a6cf77e481f2f7ebd228259180b02b3a9
7
- data.tar.gz: 97792e3a516b4eab80d530fa5f01e4f7e429c4f5201b61636ca85b4033bd6946f4109a79620620723a6760dd01d0666da44ba4fd2eee65a480dcfe3ec34ebee6
6
+ metadata.gz: 3d26011763529941789b1b12e10b4e3e40988ab554fc6b9683df16bdf943caa4a0e2404c3303ac436b786ddaca139c52843f0bacb6aa16fa9ddc8d8ba1bd490a
7
+ data.tar.gz: ce390f1eb3dc6af677044d60182926afad29c302cb2f2180ad2172bb31743edaaac166857e7f72a3f6be9b313918fc29424c67f5789e44e6c0c08152435c89f7
@@ -1,3 +1,3 @@
1
1
  module CssZero
2
- VERSION = "0.0.86"
2
+ VERSION = "0.0.87"
3
3
  end
@@ -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?min"
2
+ import { FetchRequest } from "https://cdn.jsdelivr.net/npm/@rails/request.js@0.0.11/+esm"
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?min"
2
+ import { Chart, registerables } from "https://cdn.jsdelivr.net/npm/chart.js@4.4.7/+esm"
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.skypack.dev/@rails/request.js@0.0.11?min"
3
- import TomSelect from "https://cdn.skypack.dev/tom-select@2.3.1?min"
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"
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.skypack.dev/lodash-es@4.17.21?min"
3
- import Combobox from "https://cdn.skypack.dev/@github/combobox-nav@3.0.1?min"
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"
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.skypack.dev/lodash-es@4.17.21?min"
2
+ import debounce from "https://cdn.jsdelivr.net/npm/lodash.debounce@4.0.8/+esm"
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?min"
2
+ import flatpickr from "https://cdn.jsdelivr.net/npm/flatpickr@4.6.13/+esm"
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.skypack.dev/inputmask@5.0.9?min"
2
+ import Inputmask from "https://cdn.jsdelivr.net/npm/inputmask@5.0.9/+esm"
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.skypack.dev/@floating-ui/dom@1.6.12?min"
2
+ import { computePosition, flip, shift, offset, autoUpdate } from "https://cdn.jsdelivr.net/npm/@floating-ui/dom@1.6.13/+esm"
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.skypack.dev/@rails/request.js@0.0.11?min"
3
- import Sortable from "https://cdn.skypack.dev/sortablejs?min"
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"
4
4
 
5
5
  export default class extends Controller {
6
6
  static values = { url: String, group: String, handle: 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.86
4
+ version: 0.0.87
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: 2025-01-11 00:00:00.000000000 Z
11
+ date: 2025-01-13 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: lazaronixon@hotmail.com