@sdata/web-vue 3.15.0 → 3.16.1

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.
@@ -1,9 +1,9 @@
1
1
  import { _objectSpread2 } from "../_virtual/_@oxc-project_runtime@0.133.0/helpers/esm/objectSpread2.js";
2
2
  import { getPrefixCls } from "../_utils/global-config.js";
3
3
  import { isFunction } from "../_utils/is.js";
4
+ import Checkbox from "../checkbox/index.js";
4
5
  import { tableInjectionKey } from "./context.js";
5
6
  import { getGridSpanStyle, getOperationFixedCls, getOperationStyle } from "./utils.js";
6
- import Checkbox from "../checkbox/index.js";
7
7
  import { computed, createVNode, defineComponent, inject } from "vue";
8
8
  //#region components/table/table-operation-th.tsx
9
9
  var table_operation_th_default = /* @__PURE__ */ defineComponent({
@@ -5,9 +5,9 @@ import icon_hover_default from "../_components/icon-hover.js";
5
5
  import { useI18n } from "../locale/index.js";
6
6
  import Trigger from "../trigger/index.js";
7
7
  import Button from "../button/index.js";
8
+ import Checkbox from "../checkbox/index.js";
8
9
  import { tableInjectionKey } from "./context.js";
9
10
  import { getFixedCls, getGridSpanStyle, getStyle } from "./utils.js";
10
- import Checkbox from "../checkbox/index.js";
11
11
  import Radio from "../radio/index.js";
12
12
  import auto_tooltip_default from "../_components/auto-tooltip/auto-tooltip.js";
13
13
  import IconCaretDown from "../icon/icon-caret-down/index.js";
@@ -661,6 +661,9 @@
661
661
  "sd-config-provider/pagination": {
662
662
  "description": "Default config for Pagination"
663
663
  },
664
+ "sd-config-provider/color-picker": {
665
+ "description": "Default config for ColorPicker"
666
+ },
664
667
  "sd-config-provider/json-form": {
665
668
  "description": "Default config for JsonForm"
666
669
  },
@@ -299,6 +299,7 @@
299
299
  "modal",
300
300
  "drawer",
301
301
  "pagination",
302
+ "color-picker",
302
303
  "json-form",
303
304
  "theme",
304
305
  "theme-mode"
@@ -2,7 +2,7 @@
2
2
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
3
3
  "framework": "vue",
4
4
  "name": "@sdata/web-vue",
5
- "version": "3.14.0",
5
+ "version": "3.16.0",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -1735,6 +1735,14 @@
1735
1735
  "kind": "expression"
1736
1736
  }
1737
1737
  },
1738
+ {
1739
+ "name": "color-picker",
1740
+ "description": "Default config for ColorPicker",
1741
+ "value": {
1742
+ "type": "ConfigProviderColorPicker",
1743
+ "kind": "expression"
1744
+ }
1745
+ },
1738
1746
  {
1739
1747
  "name": "json-form",
1740
1748
  "description": "Default config for JsonForm",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sdata/web-vue",
3
- "version": "3.15.0",
3
+ "version": "3.16.1",
4
4
  "description": "SD Design Vue: A Vue.js 3 UI Library",
5
5
  "keywords": [
6
6
  "sd",
@@ -1 +0,0 @@
1
- export declare const colors: string[];
@@ -1,27 +0,0 @@
1
- //#region components/color-picker/colors.ts
2
- var colors = [
3
- "#00B42A",
4
- "#3C7EFF",
5
- "#FF7D00",
6
- "#F76965",
7
- "#F7BA1E",
8
- "#F5319D",
9
- "#D91AD9",
10
- "#9FDB1D",
11
- "#FADC19",
12
- "#722ED1",
13
- "#3491FA",
14
- "#7BE188",
15
- "#93BEFF",
16
- "#FFCF8B",
17
- "#FBB0A7",
18
- "#FCE996",
19
- "#FB9DC7",
20
- "#F08EE6",
21
- "#DCF190",
22
- "#FDFA94",
23
- "#C396ED",
24
- "#9FD4FD"
25
- ];
26
- //#endregion
27
- export { colors };