@operato/styles 9.0.0-beta.4 → 9.0.0-beta.47

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.
Files changed (36) hide show
  1. package/CHANGELOG.md +130 -0
  2. package/dist/src/box-padding-editor-styles.d.ts +1 -0
  3. package/dist/src/box-padding-editor-styles.js +99 -0
  4. package/dist/src/box-padding-editor-styles.js.map +1 -0
  5. package/dist/src/gradient-direction-styles.d.ts +4 -0
  6. package/dist/src/gradient-direction-styles.js +78 -0
  7. package/dist/src/gradient-direction-styles.js.map +1 -0
  8. package/dist/src/index.d.ts +6 -0
  9. package/dist/src/index.js +6 -0
  10. package/dist/src/index.js.map +1 -1
  11. package/dist/src/inspector-styles.d.ts +4 -0
  12. package/dist/src/inspector-styles.js +41 -0
  13. package/dist/src/inspector-styles.js.map +1 -0
  14. package/dist/src/line-styles.d.ts +4 -0
  15. package/dist/src/line-styles.js +144 -0
  16. package/dist/src/line-styles.js.map +1 -0
  17. package/dist/src/property-grid-styles.d.ts +4 -0
  18. package/dist/src/property-grid-styles.js +169 -0
  19. package/dist/src/property-grid-styles.js.map +1 -0
  20. package/dist/src/table-event-styles.d.ts +4 -0
  21. package/dist/src/table-event-styles.js +57 -0
  22. package/dist/src/table-event-styles.js.map +1 -0
  23. package/dist/stories/button-container-styles.stories.js +1 -1
  24. package/dist/stories/button-container-styles.stories.js.map +1 -1
  25. package/dist/stories/common-header-styles-actions.stories.js +1 -1
  26. package/dist/stories/common-header-styles-actions.stories.js.map +1 -1
  27. package/dist/stories/common-header-styles-pure.stories.js +1 -1
  28. package/dist/stories/common-header-styles-pure.stories.js.map +1 -1
  29. package/dist/tsconfig.tsbuildinfo +1 -1
  30. package/icons/icon-inspector.png +0 -0
  31. package/icons/icon-properties-arrow-type.png +0 -0
  32. package/icons/icon-properties-gradient-direction.png +0 -0
  33. package/icons/icon-properties-line-type.png +0 -0
  34. package/icons/icon-properties-padding.png +0 -0
  35. package/icons/icon-properties-table.png +0 -0
  36. package/package.json +59 -3
Binary file
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@operato/styles",
3
3
  "description": "Webcomponent styles following open-wc recommendations",
4
4
  "author": "heartyoh",
5
- "version": "9.0.0-beta.4",
5
+ "version": "9.0.0-beta.47",
6
6
  "type": "module",
7
7
  "main": "dist/src/index.js",
8
8
  "module": "dist/src/index.js",
@@ -18,8 +18,64 @@
18
18
  "directory": "webcomponents/styles"
19
19
  },
20
20
  "exports": {
21
+ ".": "./dist/src/index.js",
21
22
  "./package.json": "./package.json",
22
- ".": "./dist/src/index.js"
23
+ "./box-padding-editor-styles.js": "./dist/src/box-padding-editor-styles.js",
24
+ "./gradient-direction-styles.js": "./dist/src/gradient-direction-styles.js",
25
+ "./property-grid-styles.js": "./dist/src/property-grid-styles.js",
26
+ "./table-event-styles.js": "./dist/src/table-event-styles.js",
27
+ "./headroom-styles.js": "./dist/src/headroom-styles.js",
28
+ "./scrollbar-styles.js": "./dist/src/scrollbar-styles.js",
29
+ "./spinner-styles.js": "./dist/src/spinner-styles.js",
30
+ "./common-button-styles.js": "./dist/src/common-button-styles.js",
31
+ "./common-grist-styles.js": "./dist/src/common-grist-styles.js",
32
+ "./button-container-styles.js": "./dist/src/button-container-styles.js",
33
+ "./common-header-styles.js": "./dist/src/common-header-styles.js",
34
+ "./line-styles.js": "./dist/src/line-styles.js",
35
+ "./inspector-styles.js": "./dist/src/inspector-styles.js"
36
+ },
37
+ "typesVersions": {
38
+ "*": {
39
+ "./box-padding-editor-styles.js": [
40
+ "./dist/src/box-padding-editor-styles.d.ts"
41
+ ],
42
+ "./gradient-direction-styles.js": [
43
+ "./dist/src/gradient-direction-styles.d.ts"
44
+ ],
45
+ "./property-grid-styles.js": [
46
+ "./dist/src/property-grid-styles.d.ts"
47
+ ],
48
+ "./table-event-styles.js": [
49
+ "./dist/src/table-event-styles.d.ts"
50
+ ],
51
+ "./headroom-styles.js": [
52
+ "./dist/src/headroom-styles.d.ts"
53
+ ],
54
+ "./scrollbar-styles.js": [
55
+ "./dist/src/scrollbar-styles.d.ts"
56
+ ],
57
+ "./spinner-styles.js": [
58
+ "./dist/src/spinner-styles.d.ts"
59
+ ],
60
+ "./common-button-styles.js": [
61
+ "./dist/src/common-button-styles.d.ts"
62
+ ],
63
+ "./common-grist-styles.js": [
64
+ "./dist/src/common-grist-styles.d.ts"
65
+ ],
66
+ "./button-container-styles.js": [
67
+ "./dist/src/button-container-styles.d.ts"
68
+ ],
69
+ "./common-header-styles.js": [
70
+ "./dist/src/common-header-styles.d.ts"
71
+ ],
72
+ "./line-styles.js": [
73
+ "./dist/src/line-styles.d.ts"
74
+ ],
75
+ "./inspector-styles.js": [
76
+ "./dist/src/inspector-styles.d.ts"
77
+ ]
78
+ }
23
79
  },
24
80
  "scripts": {
25
81
  "analyze": "cem analyze --litelement",
@@ -53,5 +109,5 @@
53
109
  },
54
110
  "customElements": "custom-elements.json",
55
111
  "prettier": "@hatiolab/prettier-config",
56
- "gitHead": "d1d762cc701221021637fda95f7399ca641afb6e"
112
+ "gitHead": "7ea34ac7acf621267833af2ce46ce630c3daabc3"
57
113
  }