@ws-ui/code-editor 0.1.20 → 0.1.21

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/dist/index.es.js CHANGED
@@ -1467,6 +1467,9 @@ const wn = ({ lspProps: { lastError: r, reload: n } }) => {
1467
1467
  {
1468
1468
  $ref: "#/definitions/Combination"
1469
1469
  },
1470
+ {
1471
+ $ref: "#/definitions/CurrentState"
1472
+ },
1470
1473
  {
1471
1474
  $ref: "#/definitions/ParentState"
1472
1475
  },
@@ -1555,16 +1558,6 @@ const wn = ({ lspProps: { lastError: r, reload: n } }) => {
1555
1558
  "hardCoded"
1556
1559
  ]
1557
1560
  },
1558
- dataType: {
1559
- enum: [
1560
- "string",
1561
- "number",
1562
- "date",
1563
- "boolean",
1564
- "array",
1565
- "object"
1566
- ]
1567
- },
1568
1561
  op: {
1569
1562
  enum: [
1570
1563
  "eq",
@@ -1609,6 +1602,52 @@ const wn = ({ lspProps: { lastError: r, reload: n } }) => {
1609
1602
  "op"
1610
1603
  ]
1611
1604
  },
1605
+ CurrentState: {
1606
+ allOf: [
1607
+ {
1608
+ $ref: "#/definitions/Base"
1609
+ }
1610
+ ],
1611
+ properties: {
1612
+ type: {
1613
+ const: "currentState"
1614
+ },
1615
+ value: {
1616
+ type: "string"
1617
+ },
1618
+ valueType: {
1619
+ enum: [
1620
+ "datasource",
1621
+ "hardCoded"
1622
+ ]
1623
+ },
1624
+ dataType: {
1625
+ enum: [
1626
+ "string",
1627
+ "number",
1628
+ "date",
1629
+ "boolean",
1630
+ "array",
1631
+ "object"
1632
+ ]
1633
+ },
1634
+ op: {
1635
+ enum: [
1636
+ "eq",
1637
+ "neq",
1638
+ "regex",
1639
+ "in",
1640
+ "nin"
1641
+ ]
1642
+ }
1643
+ },
1644
+ required: [
1645
+ "name",
1646
+ "type",
1647
+ "value",
1648
+ "op"
1649
+ ]
1650
+ },
1612
1651
  ParentState: {
1613
1652
  allOf: [
1614
1653
  {
@@ -1642,7 +1681,9 @@ const wn = ({ lspProps: { lastError: r, reload: n } }) => {
1642
1681
  enum: [
1643
1682
  "eq",
1644
1683
  "neq",
1645
- "regex"
1684
+ "regex",
1685
+ "in",
1686
+ "nin"
1646
1687
  ]
1647
1688
  }
1648
1689
  },