@fastkit/vui 0.13.0 → 0.13.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fastkit/vui",
3
- "version": "0.13.0",
3
+ "version": "0.13.1",
4
4
  "description": "A simple, extensible UI kit for Vue applications.",
5
5
  "keywords": [
6
6
  "fastkit",
@@ -44,29 +44,29 @@
44
44
  "src"
45
45
  ],
46
46
  "dependencies": {
47
- "@fastkit/color-scheme": "1.0.0",
48
- "@fastkit/color-scheme-gen": "0.13.0",
47
+ "@fastkit/color-scheme": "1.0.1",
48
+ "@fastkit/color-scheme-gen": "0.13.1",
49
49
  "@fastkit/dom": "0.1.0",
50
50
  "@fastkit/helpers": "0.13.0",
51
- "@fastkit/icon-font": "1.0.0",
52
- "@fastkit/media-match": "1.0.0",
53
- "@fastkit/media-match-gen": "0.13.0",
51
+ "@fastkit/icon-font": "1.0.1",
52
+ "@fastkit/media-match": "1.0.1",
53
+ "@fastkit/media-match-gen": "0.13.1",
54
54
  "@fastkit/rules": "0.13.0",
55
55
  "@fastkit/stylebase": "0.13.0",
56
56
  "@fastkit/tiny-logger": "0.13.0",
57
+ "@fastkit/vue-action": "0.1.0",
57
58
  "@fastkit/vue-app-layout": "0.13.0",
58
59
  "@fastkit/vue-body-scroll-lock": "0.1.0",
59
- "@fastkit/vue-action": "0.1.0",
60
60
  "@fastkit/vue-click-outside": "0.1.0",
61
- "@fastkit/vue-color-scheme": "0.13.0",
61
+ "@fastkit/vue-color-scheme": "0.13.1",
62
62
  "@fastkit/vue-form-control": "0.13.0",
63
63
  "@fastkit/vue-keyboard": "0.1.0",
64
- "@fastkit/vue-loading": "0.13.0",
64
+ "@fastkit/vue-loading": "0.13.1",
65
65
  "@fastkit/vue-location": "0.1.0",
66
- "@fastkit/vue-media-match": "0.13.0",
66
+ "@fastkit/vue-media-match": "0.13.1",
67
67
  "@fastkit/vue-resize": "0.1.0",
68
68
  "@fastkit/vue-scroller": "0.13.0",
69
- "@fastkit/vue-stack": "0.13.0",
69
+ "@fastkit/vue-stack": "0.13.1",
70
70
  "@fastkit/vue-transitions": "0.1.0",
71
71
  "@fastkit/vue-utils": "0.13.0"
72
72
  },
package/src/service.tsx CHANGED
@@ -103,6 +103,10 @@ export interface VuiServiceIconSettings {
103
103
  editorformatItalic: IconName;
104
104
  editorformatListBulleted: IconName;
105
105
  editorformatListNumbered: IconName;
106
+ editorAlignLeft: IconName;
107
+ editorAlignCenter: IconName;
108
+ editorAlignRight: IconName;
109
+ editorAlignJustify: IconName;
106
110
  editorLink: IconName;
107
111
  editorLinkOff: IconName;
108
112
  editorUndo: IconName;
@@ -1,6 +1,7 @@
1
1
  @use './core.scss';
2
2
 
3
3
  $z: 24;
4
+
4
5
  @while $z >= 0 {
5
6
  .elevation-#{$z} {
6
7
  @include core.elevation($z, true);