@scalar/use-codemirror 0.7.2 → 0.7.3

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @scalar/use-codemirror
2
2
 
3
+ ## 0.7.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 58af0623: fix missing index ts
8
+
3
9
  ## 0.7.2
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -12651,14 +12651,17 @@ const lightTheme = createTheme({
12651
12651
  fontFamily: "var(--theme-font-code, var(--default-theme-font-code))"
12652
12652
  },
12653
12653
  styles: [
12654
- { tag: [tags$1.standard(tags$1.tagName), tags$1.tagName], color: "#EDBE20" },
12654
+ {
12655
+ tag: [tags$1.standard(tags$1.tagName), tags$1.tagName],
12656
+ color: "var(--theme-color-yellow, var(--default-theme-color-yellow))"
12657
+ },
12655
12658
  {
12656
12659
  tag: [tags$1.comment],
12657
12660
  color: "var(--theme-color-3, var(--default-theme-color-3))"
12658
12661
  },
12659
12662
  {
12660
12663
  tag: [tags$1.className],
12661
- color: "#FB892C"
12664
+ color: "var(--theme-color-orange, var(--default-theme-color-orange))"
12662
12665
  },
12663
12666
  {
12664
12667
  tag: [tags$1.variableName, tags$1.propertyName, tags$1.attributeName],
@@ -12670,15 +12673,15 @@ const lightTheme = createTheme({
12670
12673
  },
12671
12674
  {
12672
12675
  tag: [tags$1.keyword, tags$1.typeName, tags$1.typeOperator],
12673
- color: "#069061"
12676
+ color: "var(--theme-color-green, var(--default-theme-color-green))"
12674
12677
  },
12675
12678
  {
12676
12679
  tag: [tags$1.string],
12677
- color: "#0082D0"
12680
+ color: "var(--theme-color-blue, var(--default-theme-color-blue))"
12678
12681
  },
12679
12682
  {
12680
12683
  tag: [tags$1.bracket, tags$1.number, tags$1.regexp, tags$1.meta],
12681
- color: "#5203D1"
12684
+ color: "var(--theme-color-purple, var(--default-theme-color-purple))"
12682
12685
  },
12683
12686
  { tag: [tags$1.name, tags$1.quote], color: "#22863a" },
12684
12687
  { tag: [tags$1.heading], color: "#24292e", fontWeight: "bold" },
@@ -12709,14 +12712,17 @@ const darkTheme = createTheme({
12709
12712
  fontFamily: "var(--theme-font-code, var(--default-theme-font-code))"
12710
12713
  },
12711
12714
  styles: [
12712
- { tag: [tags$1.standard(tags$1.tagName), tags$1.tagName], color: "#FCD245" },
12715
+ {
12716
+ tag: [tags$1.standard(tags$1.tagName), tags$1.tagName],
12717
+ color: "var(--theme-color-yellow, var(--default-theme-color-yellow))"
12718
+ },
12713
12719
  {
12714
12720
  tag: [tags$1.comment],
12715
12721
  color: "var(--theme-color-3, var(--default-theme-color-3))"
12716
12722
  },
12717
12723
  {
12718
12724
  tag: [tags$1.className],
12719
- color: "#FC9B4B"
12725
+ color: "var(--theme-color-orange, var(--default-theme-color-orange))"
12720
12726
  },
12721
12727
  {
12722
12728
  tag: [tags$1.variableName, tags$1.propertyName, tags$1.attributeName],
@@ -12728,15 +12734,15 @@ const darkTheme = createTheme({
12728
12734
  },
12729
12735
  {
12730
12736
  tag: [tags$1.keyword, tags$1.typeName, tags$1.typeOperator],
12731
- color: "#2BA179"
12737
+ color: "var(--theme-color-green, var(--default-theme-color-green))"
12732
12738
  },
12733
12739
  {
12734
12740
  tag: [tags$1.string],
12735
- color: "#2695D7"
12741
+ color: "var(--theme-color-blue, var(--default-theme-color-blue))"
12736
12742
  },
12737
12743
  {
12738
12744
  tag: [tags$1.bracket, tags$1.number, tags$1.regexp, tags$1.meta],
12739
- color: "#864FDF"
12745
+ color: "var(--theme-color-purple, var(--default-theme-color-purple))"
12740
12746
  },
12741
12747
  { tag: [tags$1.name, tags$1.quote], color: "#22863a" },
12742
12748
  { tag: [tags$1.heading], color: "#24292e", fontWeight: "bold" },
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/themes/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,UAAU,uCA0DrB,CAAA;AAEF,eAAO,MAAM,SAAS,uCA0DpB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/themes/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,UAAU,uCA6DrB,CAAA;AAEF,eAAO,MAAM,SAAS,uCA6DpB,CAAA"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@scalar/use-codemirror",
3
3
  "description": "CodeMirror for Vue",
4
- "version": "0.7.2",
4
+ "version": "0.7.3",
5
5
  "author": "Scalar (https://github.com/scalar)",
6
6
  "bugs": "https://github.com/scalar/scalar/issues/new",
7
7
  "dependencies": {