@fastkit/vui 0.12.12 → 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.12.12",
3
+ "version": "0.13.1",
4
4
  "description": "A simple, extensible UI kit for Vue applications.",
5
5
  "keywords": [
6
6
  "fastkit",
@@ -44,31 +44,31 @@
44
44
  "src"
45
45
  ],
46
46
  "dependencies": {
47
- "@fastkit/color-scheme": "0.12.11",
48
- "@fastkit/color-scheme-gen": "0.12.11",
49
- "@fastkit/dom": "0.0.1",
50
- "@fastkit/helpers": "0.12.11",
51
- "@fastkit/icon-font": "0.12.11",
52
- "@fastkit/media-match": "0.12.11",
53
- "@fastkit/media-match-gen": "0.12.11",
54
- "@fastkit/rules": "0.12.11",
55
- "@fastkit/stylebase": "0.12.11",
56
- "@fastkit/vue-action": "0.0.1",
57
- "@fastkit/tiny-logger": "0.12.11",
58
- "@fastkit/vue-app-layout": "0.12.12",
59
- "@fastkit/vue-body-scroll-lock": "0.0.1",
60
- "@fastkit/vue-click-outside": "0.0.1",
61
- "@fastkit/vue-color-scheme": "0.12.11",
62
- "@fastkit/vue-keyboard": "0.0.1",
63
- "@fastkit/vue-form-control": "0.12.11",
64
- "@fastkit/vue-loading": "0.12.11",
65
- "@fastkit/vue-location": "0.0.1",
66
- "@fastkit/vue-media-match": "0.12.11",
67
- "@fastkit/vue-resize": "0.0.1",
68
- "@fastkit/vue-scroller": "0.12.11",
69
- "@fastkit/vue-stack": "0.12.11",
70
- "@fastkit/vue-transitions": "0.0.1",
71
- "@fastkit/vue-utils": "0.12.11"
47
+ "@fastkit/color-scheme": "1.0.1",
48
+ "@fastkit/color-scheme-gen": "0.13.1",
49
+ "@fastkit/dom": "0.1.0",
50
+ "@fastkit/helpers": "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
+ "@fastkit/rules": "0.13.0",
55
+ "@fastkit/stylebase": "0.13.0",
56
+ "@fastkit/tiny-logger": "0.13.0",
57
+ "@fastkit/vue-action": "0.1.0",
58
+ "@fastkit/vue-app-layout": "0.13.0",
59
+ "@fastkit/vue-body-scroll-lock": "0.1.0",
60
+ "@fastkit/vue-click-outside": "0.1.0",
61
+ "@fastkit/vue-color-scheme": "0.13.1",
62
+ "@fastkit/vue-form-control": "0.13.0",
63
+ "@fastkit/vue-keyboard": "0.1.0",
64
+ "@fastkit/vue-loading": "0.13.1",
65
+ "@fastkit/vue-location": "0.1.0",
66
+ "@fastkit/vue-media-match": "0.13.1",
67
+ "@fastkit/vue-resize": "0.1.0",
68
+ "@fastkit/vue-scroller": "0.13.0",
69
+ "@fastkit/vue-stack": "0.13.1",
70
+ "@fastkit/vue-transitions": "0.1.0",
71
+ "@fastkit/vue-utils": "0.13.0"
72
72
  },
73
73
  "peerDependencies": {
74
74
  "vue": "^3.2.0",
@@ -124,7 +124,6 @@ export const VButton = defineComponent({
124
124
 
125
125
  const classes = computed(() => [
126
126
  color.colorClasses.value,
127
- // navigationable.value.classes,
128
127
  spacer.value ? `v-button--spacer-${spacer.value}` : undefined,
129
128
  `v-button--${control.size.value}`,
130
129
  `v-button--align-${props.align}`,
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);