@awes-io/ui 2.142.0 → 2.143.0
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/CHANGELOG.md +58 -0
- package/assets/css/components/_index.css +7 -1
- package/assets/css/components/animation.css +38 -32
- package/assets/css/components/content-placeholder.css +103 -0
- package/assets/css/components/empty-container.css +69 -1
- package/assets/css/components/filter-chosen.css +6 -0
- package/assets/css/components/filter-date-range.css +17 -1
- package/assets/css/components/filter-month.css +23 -17
- package/assets/css/components/filter-select.css +11 -0
- package/assets/css/components/layout.css +1 -32
- package/assets/css/components/modal.css +1 -1
- package/assets/css/components/number.css +12 -0
- package/assets/css/components/page-aside.css +54 -0
- package/assets/js/css.js +1 -1
- package/assets/js/icons/mono.js +59 -91
- package/assets/js/icons/multicolor.js +1 -31
- package/components/1_atoms/AwContentPlaceholder.vue +60 -0
- package/components/1_atoms/AwFlow.vue +21 -48
- package/components/1_atoms/AwLabel.vue +1 -1
- package/components/2_molecules/AwButton.vue +1 -1
- package/components/2_molecules/AwEmptyContainer.vue +74 -72
- package/components/2_molecules/AwNumber.vue +180 -0
- package/components/2_molecules/AwSelect.vue +11 -4
- package/components/3_organisms/AwFilterChosen.vue +73 -0
- package/components/3_organisms/AwFilterDateRange.vue +177 -0
- package/components/3_organisms/AwFilterMonth.vue +37 -40
- package/components/3_organisms/AwFilterSelect.vue +368 -0
- package/components/3_organisms/AwImageUpload.vue +1 -1
- package/components/3_organisms/AwMarkdownEditor.vue +0 -0
- package/components/3_organisms/AwMultiBlockBuilder.vue +1 -1
- package/components/3_organisms/AwTable/AwTableBuilder.vue +12 -60
- package/components/4_pages/AwPageAside.vue +108 -0
- package/components/5_layouts/AwLayoutCenter.vue +3 -8
- package/components/5_layouts/_AwUserMenu.vue +1 -1
- package/dist/css/aw-icons.css +26 -0
- package/dist/fonts/aw-icons.svg +18 -0
- package/dist/fonts/aw-icons.ttf +0 -0
- package/dist/fonts/aw-icons.woff +0 -0
- package/dist/fonts/aw-icons.woff2 +0 -0
- package/docs/_template.md +80 -0
- package/docs/components/atoms/aw-accordion-fold.md +91 -0
- package/docs/components/atoms/aw-action-card-body.md +67 -0
- package/docs/components/atoms/aw-action-card.md +94 -0
- package/docs/components/atoms/aw-action-icon.md +88 -0
- package/docs/components/atoms/aw-avatar.md +106 -0
- package/docs/components/atoms/aw-card.md +112 -0
- package/docs/components/atoms/aw-checkbox.md +112 -0
- package/docs/components/atoms/aw-content-placeholder.md +116 -0
- package/docs/components/atoms/aw-description.md +83 -0
- package/docs/components/atoms/aw-dock.md +84 -0
- package/docs/components/atoms/aw-dropdown-button.md +94 -0
- package/docs/components/atoms/aw-dropdown.md +128 -0
- package/docs/components/atoms/aw-file.md +73 -0
- package/docs/components/atoms/aw-flow.md +92 -0
- package/docs/components/atoms/aw-grid.md +91 -0
- package/docs/components/atoms/aw-headline.md +71 -0
- package/docs/components/atoms/aw-icon-system-color.md +121 -0
- package/docs/components/atoms/aw-icon-system-mono.md +205 -0
- package/docs/components/atoms/aw-icon.md +235 -0
- package/docs/components/atoms/aw-info.md +85 -0
- package/docs/components/atoms/aw-input.md +120 -0
- package/docs/components/atoms/aw-label.md +83 -0
- package/docs/components/atoms/aw-link.md +99 -0
- package/docs/components/atoms/aw-list.md +88 -0
- package/docs/components/atoms/aw-progress.md +70 -0
- package/docs/components/atoms/aw-radio.md +109 -0
- package/docs/components/atoms/aw-refresh-wrapper.md +81 -0
- package/docs/components/atoms/aw-select-native.md +106 -0
- package/docs/components/atoms/aw-slider.md +82 -0
- package/docs/components/atoms/aw-sub-headline.md +73 -0
- package/docs/components/atoms/aw-switcher.md +115 -0
- package/docs/components/atoms/aw-tag.md +80 -0
- package/docs/components/atoms/aw-title.md +70 -0
- package/docs/components/atoms/aw-toggler.md +69 -0
- package/docs/components/layouts/aw-layout-center.md +168 -0
- package/docs/components/layouts/aw-layout-error.md +153 -0
- package/docs/components/layouts/aw-layout-provider.md +238 -0
- package/docs/components/layouts/aw-layout.md +88 -0
- package/docs/components/molecules/aw-action-button.md +91 -0
- package/docs/components/molecules/aw-alert.md +96 -0
- package/docs/components/molecules/aw-badge.md +108 -0
- package/docs/components/molecules/aw-banner-text.md +90 -0
- package/docs/components/molecules/aw-button-nav.md +46 -0
- package/docs/components/molecules/aw-button.md +123 -0
- package/docs/components/molecules/aw-description-input.md +67 -0
- package/docs/components/molecules/aw-empty-container.md +86 -0
- package/docs/components/molecules/aw-island.md +234 -0
- package/docs/components/molecules/aw-number.md +138 -0
- package/docs/components/molecules/aw-select-object.md +401 -0
- package/docs/components/molecules/aw-select.md +215 -0
- package/docs/components/molecules/aw-tab-nav.md +108 -0
- package/docs/components/molecules/aw-tel.md +129 -0
- package/docs/components/molecules/aw-textarea.md +83 -0
- package/docs/components/molecules/aw-userpic.md +115 -0
- package/docs/components/organisms/aw-address-block.md +64 -0
- package/docs/components/organisms/aw-address.md +132 -0
- package/docs/components/organisms/aw-birthday-picker.md +73 -0
- package/docs/components/organisms/aw-bottom-bar.md +66 -0
- package/docs/components/organisms/aw-calendar-days.md +115 -0
- package/docs/components/organisms/aw-calendar-nav.md +98 -0
- package/docs/components/organisms/aw-calendar-view.md +98 -0
- package/docs/components/organisms/aw-calendar.md +166 -0
- package/docs/components/organisms/aw-chart.md +154 -0
- package/docs/components/organisms/aw-chip-select.md +164 -0
- package/docs/components/organisms/aw-chip.md +126 -0
- package/docs/components/organisms/aw-code-snippet.md +94 -0
- package/docs/components/organisms/aw-code.md +132 -0
- package/docs/components/organisms/aw-context-menu.md +117 -0
- package/docs/components/organisms/aw-cropper.md +151 -0
- package/docs/components/organisms/aw-date.md +161 -0
- package/docs/components/organisms/aw-display-date.md +33 -0
- package/docs/components/organisms/aw-download-link.md +46 -0
- package/docs/components/organisms/aw-fetch-data.md +161 -0
- package/docs/components/organisms/aw-filter-chosen.md +226 -0
- package/docs/components/organisms/aw-filter-date-range.md +205 -0
- package/docs/components/organisms/aw-filter-month.md +43 -0
- package/docs/components/organisms/aw-filter-select.md +225 -0
- package/docs/components/organisms/aw-form.md +174 -0
- package/docs/components/organisms/aw-gmap-marker.md +86 -0
- package/docs/components/organisms/aw-gmap.md +90 -0
- package/docs/components/organisms/aw-image-upload.md +56 -0
- package/docs/components/organisms/aw-island-avatar.md +87 -0
- package/docs/components/organisms/aw-markdown-editor.md +104 -0
- package/docs/components/organisms/aw-modal-buttons.md +57 -0
- package/docs/components/organisms/aw-modal.md +246 -0
- package/docs/components/organisms/aw-model-edit.md +74 -0
- package/docs/components/organisms/aw-money.md +53 -0
- package/docs/components/organisms/aw-multi-block-builder.md +165 -0
- package/docs/components/organisms/aw-pagination.md +121 -0
- package/docs/components/organisms/aw-password.md +103 -0
- package/docs/components/organisms/aw-preview-card.md +45 -0
- package/docs/components/organisms/aw-search.md +116 -0
- package/docs/components/organisms/aw-subnav.md +122 -0
- package/docs/components/organisms/aw-table-builder.md +165 -0
- package/docs/components/organisms/aw-table-col.md +123 -0
- package/docs/components/organisms/aw-table-head.md +92 -0
- package/docs/components/organisms/aw-table-row.md +91 -0
- package/docs/components/organisms/aw-table.md +172 -0
- package/docs/components/organisms/aw-tags.md +54 -0
- package/docs/components/organisms/aw-toggle-show-aside.md +43 -0
- package/docs/components/organisms/aw-uploader-files.md +125 -0
- package/docs/components/organisms/aw-uploader.md +163 -0
- package/docs/components/organisms/aw-user-menu.md +87 -0
- package/docs/components/pages/aw-page-aside.md +296 -0
- package/docs/components/pages/aw-page-menu-buttons.md +172 -0
- package/docs/components/pages/aw-page-modal.md +198 -0
- package/docs/components/pages/aw-page-single.md +253 -0
- package/docs/components/pages/aw-page.md +194 -0
- package/docs/configuration.md +493 -0
- package/docs/cookbook/advanced-patterns.md +1388 -0
- package/docs/cookbook/common-patterns.md +965 -0
- package/docs/cookbook/index.md +786 -0
- package/docs/getting-started.md +596 -0
- package/docs/guides/best-practices.md +1106 -0
- package/docs/guides/data-fetching.md +852 -0
- package/docs/guides/error-handling.md +1172 -0
- package/docs/guides/forms-guide.md +1329 -0
- package/docs/guides/mobile-subnavigation.md +359 -0
- package/docs/guides/page-patterns/aside-pages.md +1418 -0
- package/docs/guides/page-patterns/dashboard-pages.md +990 -0
- package/docs/guides/page-patterns/detail-pages.md +1493 -0
- package/docs/guides/page-patterns/list-pages.md +1094 -0
- package/docs/index.md +263 -1
- package/docs/integrations.md +870 -0
- package/docs/reference/menu.md +462 -0
- package/docs/reference/plugins.md +970 -0
- package/docs/reference/troubleshooting.md +945 -0
- package/nuxt/awes.config.js +9 -8
- package/nuxt/icons.css +26 -0
- package/nuxt/index.js +2 -2
- package/nuxt/pages/more.vue +1 -1
- package/package.json +5 -3
- package/readme.md +171 -1
- package/docs/aw-accordion-fold.md +0 -46
- package/docs/aw-address.md +0 -44
- package/docs/aw-avatar.md +0 -51
- package/docs/aw-badge.md +0 -32
- package/docs/aw-button-nav.md +0 -44
- package/docs/aw-button.md +0 -50
- package/docs/aw-calendar-days.md +0 -46
- package/docs/aw-calendar-nav.md +0 -25
- package/docs/aw-calendar-view.md +0 -12
- package/docs/aw-calendar.md +0 -59
- package/docs/aw-card.md +0 -48
- package/docs/aw-chart.md +0 -51
- package/docs/aw-checkbox.md +0 -56
- package/docs/aw-chip-select.md +0 -46
- package/docs/aw-chip.md +0 -53
- package/docs/aw-code-snippet.md +0 -18
- package/docs/aw-code.md +0 -56
- package/docs/aw-content-wrapper.md +0 -40
- package/docs/aw-context-menu.md +0 -31
- package/docs/aw-cropper.md +0 -60
- package/docs/aw-dashboard-card.md +0 -37
- package/docs/aw-dashboard-donut.md +0 -30
- package/docs/aw-dashboard-line.md +0 -20
- package/docs/aw-dashboard-progress.md +0 -33
- package/docs/aw-dashboard-section.md +0 -32
- package/docs/aw-dashboard-speed.md +0 -30
- package/docs/aw-date.md +0 -52
- package/docs/aw-dropdown-button.md +0 -31
- package/docs/aw-dropdown.md +0 -69
- package/docs/aw-fetch-data.md +0 -45
- package/docs/aw-form.md +0 -52
- package/docs/aw-grid.md +0 -48
- package/docs/aw-icon.md +0 -50
- package/docs/aw-info.md +0 -53
- package/docs/aw-input.md +0 -55
- package/docs/aw-layout-default.md +0 -30
- package/docs/aw-layout-frame-center.md +0 -29
- package/docs/aw-layout-simple.md +0 -49
- package/docs/aw-link.md +0 -54
- package/docs/aw-markdown-editor.md +0 -51
- package/docs/aw-modal.md +0 -63
- package/docs/aw-multi-block-builder.md +0 -66
- package/docs/aw-page.md +0 -36
- package/docs/aw-pagination.md +0 -54
- package/docs/aw-password.md +0 -48
- package/docs/aw-radio.md +0 -54
- package/docs/aw-search.md +0 -49
- package/docs/aw-select.md +0 -93
- package/docs/aw-slider.md +0 -40
- package/docs/aw-svg-image.md +0 -19
- package/docs/aw-switcher.md +0 -51
- package/docs/aw-tab-nav.md +0 -55
- package/docs/aw-table-builder.md +0 -58
- package/docs/aw-table-col.md +0 -33
- package/docs/aw-table-head.md +0 -28
- package/docs/aw-table-row.md +0 -33
- package/docs/aw-table.md +0 -59
- package/docs/aw-tel.md +0 -47
- package/docs/aw-textarea.md +0 -47
- package/docs/aw-timeline-builder.md +0 -50
- package/docs/aw-toggler.md +0 -41
- package/docs/aw-uploader-files.md +0 -20
- package/docs/aw-uploader.md +0 -60
- package/docs/aw-user-menu.md +0 -34
- package/docs/aw-userpic.md +0 -34
- /package/components/{3_organisms → 2_molecules}/AwTel.vue +0 -0
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
metaTitle: Markdown editor сomponent | Awes.io
|
|
3
|
-
meta:
|
|
4
|
-
- name: description
|
|
5
|
-
content: The <AwMarkdownEditor /> component is used to render Markdown editor - UI Vue component for Awes.io.
|
|
6
|
-
title: Markdown editor
|
|
7
|
-
---
|
|
8
|
-
# Markdown editor
|
|
9
|
-
|
|
10
|
-
The `AwMarkdownEditor` component is used to render Markdown editor.
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
## Usage
|
|
14
|
-
Several examples how you can use `AwMarkdownEditor`.
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
### Live Example
|
|
18
|
-
<iframe
|
|
19
|
-
src='https://codesandbox.io/embed/github/awes-io/client/tree/master/examples/basic-ui?autoresize=1&fontsize=14&hidenavigation=1&initialpath=%2Faw-markdown-editor&module=%2Fpages%2Faw-markdown-editor.vue&theme=dark&view=editor'
|
|
20
|
-
style='width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;'
|
|
21
|
-
title='basic-ui'
|
|
22
|
-
allow='geolocation; microphone; camera; midi; vr; accelerometer; gyroscope; payment; ambient-light-sensor; encrypted-media; usb'
|
|
23
|
-
sandbox='allow-modals allow-forms allow-popups allow-scripts allow-same-origin'
|
|
24
|
-
></iframe>
|
|
25
|
-
|
|
26
|
-
## API
|
|
27
|
-
Select your desired component from below and see the available props, slots, events and functions.
|
|
28
|
-
|
|
29
|
-
### Props
|
|
30
|
-
Below is a collection of Vue **props** for the `AwMarkdownEditor` component.
|
|
31
|
-
<!-- @vuese:AwMarkdownEditor:props:start -->
|
|
32
|
-
|Name|Description|Type|Required|Default|
|
|
33
|
-
|---|---|---|---|---|
|
|
34
|
-
|source|-|`String`|`false`|-|
|
|
35
|
-
|
|
36
|
-
<!-- @vuese:AwMarkdownEditor:props:end -->
|
|
37
|
-
|
|
38
|
-
### Slots
|
|
39
|
-
Below is a collection of Vue **slots** for the `AwMarkdownEditor` component.
|
|
40
|
-
<!-- @vuese:AwMarkdownEditor:slots:start -->
|
|
41
|
-
|
|
42
|
-
<!-- @vuese:AwMarkdownEditor:slots:end -->
|
|
43
|
-
|
|
44
|
-
### Events
|
|
45
|
-
Below is a collection of Vue **events** for the `AwMarkdownEditor` component.
|
|
46
|
-
<!-- @vuese:AwMarkdownEditor:events:start -->
|
|
47
|
-
|Event Name|Description|Parameters|
|
|
48
|
-
|---|---|---|
|
|
49
|
-
|change|-|-|
|
|
50
|
-
|
|
51
|
-
<!-- @vuese:AwMarkdownEditor:events:end -->
|
package/docs/aw-modal.md
DELETED
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
metaTitle: Modal сomponent | Awes.io
|
|
3
|
-
meta:
|
|
4
|
-
- name: description
|
|
5
|
-
content: The <AwModal /> component is used to render Modal - UI Vue component for Awes.io.
|
|
6
|
-
title: Modal
|
|
7
|
-
---
|
|
8
|
-
# Modal
|
|
9
|
-
|
|
10
|
-
The `AwModal` component is used to render Modal.
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
## Usage
|
|
14
|
-
Several examples how you can use `AwModal`.
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
### Live Example
|
|
18
|
-
<iframe
|
|
19
|
-
src='https://codesandbox.io/embed/github/awes-io/client/tree/master/examples/basic-ui?autoresize=1&fontsize=14&hidenavigation=1&initialpath=%2Faw-modal&module=%2Fpages%2Faw-modal.vue&theme=dark&view=editor'
|
|
20
|
-
style='width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;'
|
|
21
|
-
title='basic-ui'
|
|
22
|
-
allow='geolocation; microphone; camera; midi; vr; accelerometer; gyroscope; payment; ambient-light-sensor; encrypted-media; usb'
|
|
23
|
-
sandbox='allow-modals allow-forms allow-popups allow-scripts allow-same-origin'
|
|
24
|
-
></iframe>
|
|
25
|
-
|
|
26
|
-
## API
|
|
27
|
-
Select your desired component from below and see the available props, slots, events and functions.
|
|
28
|
-
|
|
29
|
-
### Props
|
|
30
|
-
Below is a collection of Vue **props** for the `AwModal` component.
|
|
31
|
-
<!-- @vuese:AwModal:props:start -->
|
|
32
|
-
|Name|Description|Type|Required|Default|
|
|
33
|
-
|---|---|---|---|---|
|
|
34
|
-
|title|-|`String`|`false`|-|
|
|
35
|
-
|stay|-|`Boolean`|`false`|-|
|
|
36
|
-
|bgClickClose|-|`Boolean`|`false`|-|
|
|
37
|
-
|name|-|`String`|`false`|-|
|
|
38
|
-
|param|Get parameter, which is set when modal is opened|`String` / `Boolean`|`false`|modal|
|
|
39
|
-
|theme|-|`String`|`false`|default|
|
|
40
|
-
|disableScroll|Should modal disable body scrolling|`Boolean`|`false`|by default disabled for 'default', 'fullscreen' and 'bottom' themes|
|
|
41
|
-
|className|-|`String`|`false`|-|
|
|
42
|
-
|
|
43
|
-
<!-- @vuese:AwModal:props:end -->
|
|
44
|
-
|
|
45
|
-
### Slots
|
|
46
|
-
Below is a collection of Vue **slots** for the `AwModal` component.
|
|
47
|
-
<!-- @vuese:AwModal:slots:start -->
|
|
48
|
-
|Name|Description|Default Slot Content|
|
|
49
|
-
|---|---|---|
|
|
50
|
-
|subtitle|-|-|
|
|
51
|
-
|default|-|-|
|
|
52
|
-
|buttons|-|-|
|
|
53
|
-
|
|
54
|
-
<!-- @vuese:AwModal:slots:end -->
|
|
55
|
-
|
|
56
|
-
### Events
|
|
57
|
-
Below is a collection of Vue **events** for the `AwModal` component.
|
|
58
|
-
<!-- @vuese:AwModal:events:start -->
|
|
59
|
-
|Event Name|Description|Parameters|
|
|
60
|
-
|---|---|---|
|
|
61
|
-
|closed|-|-|
|
|
62
|
-
|
|
63
|
-
<!-- @vuese:AwModal:events:end -->
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
metaTitle: MultiBlockBuilder сomponent | Awes.io
|
|
3
|
-
meta:
|
|
4
|
-
- name: description
|
|
5
|
-
content: The <AwMultiBlockBuilder /> component is used to render MultiBlockBuilder - UI Vue component for Awes.io.
|
|
6
|
-
title: MultiBlockBuilder
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
# AwMultiBlockBuilder
|
|
10
|
-
|
|
11
|
-
Serves for VueMC collection visualization. Pass the collection to `collection` prop, and form fields that you need to default slot.
|
|
12
|
-
|
|
13
|
-
```vue
|
|
14
|
-
<AwMultiBlockBuilder title="Manager" :collection="managers">
|
|
15
|
-
<template #default="{ model }">
|
|
16
|
-
<AwInput v-model="model.first_name" :error="model.errors.first_name" label="First name" />
|
|
17
|
-
</template>
|
|
18
|
-
</AwMultiBlockBuilder>
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
## Props
|
|
22
|
-
|
|
23
|
-
<!-- @vuese:AwMultiBlockBuilder:props:start -->
|
|
24
|
-
|Name|Description|Type|Required|Default|
|
|
25
|
-
|---|---|---|---|---|
|
|
26
|
-
|collection|VueMC collection object|`Object`|`true`|-|
|
|
27
|
-
|title|Title, added to block heading and buttons|`String`|`false`|-|
|
|
28
|
-
|max|Max number of items, the add button hides if value is reached|`Number`|`false`|-|
|
|
29
|
-
|fetch|Fetch collection immediately when component mounted|`Boolean`|`false`|-|
|
|
30
|
-
|
|
31
|
-
<!-- @vuese:AwMultiBlockBuilder:props:end -->
|
|
32
|
-
|
|
33
|
-
## Events
|
|
34
|
-
|
|
35
|
-
<!-- @vuese:AwMultiBlockBuilder:events:start -->
|
|
36
|
-
|Event Name|Description|Parameters|
|
|
37
|
-
|---|---|---|
|
|
38
|
-
|add:model|Fire when model is added|`collection`, passed to props|
|
|
39
|
-
|remove:model|Fire when model is removed|`collection`, passed to props|
|
|
40
|
-
|fetch:collection|Fire on collection fetch|1.`collection`, passed to props 2. VueMC event object|
|
|
41
|
-
|save:collection|Fire on collection save|1.`collection`, passed to props 2. VueMC event object|
|
|
42
|
-
|
|
43
|
-
<!-- @vuese:AwMultiBlockBuilder:events:end -->
|
|
44
|
-
|
|
45
|
-
## Slots
|
|
46
|
-
|
|
47
|
-
<!-- @vuese:AwMultiBlockBuilder:slots:start -->
|
|
48
|
-
|Name|Description|Default Slot Content|
|
|
49
|
-
|---|---|---|
|
|
50
|
-
|title|block title|`<h5>{title} #{iteration} <button>Remove {title}</button></h5>`|
|
|
51
|
-
|default|block content|-|
|
|
52
|
-
|add|-|`<button>+ Add {title}</button>`|
|
|
53
|
-
|save|save button|`<button>Save</button>`|
|
|
54
|
-
|
|
55
|
-
<!-- @vuese:AwMultiBlockBuilder:slots:end -->
|
|
56
|
-
|
|
57
|
-
## Methods
|
|
58
|
-
|
|
59
|
-
<!-- @vuese:AwMultiBlockBuilder:methods:start -->
|
|
60
|
-
|Method|Description|Parameters|
|
|
61
|
-
|---|---|---|
|
|
62
|
-
|add|Add new model and emit `add:model` event|-|
|
|
63
|
-
|remove|Remove model and emit `remove:model` event|The model object, required|
|
|
64
|
-
|
|
65
|
-
<!-- @vuese:AwMultiBlockBuilder:methods:end -->
|
|
66
|
-
|
package/docs/aw-page.md
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
metaTitle: Page сomponent | Awes.io
|
|
3
|
-
meta:
|
|
4
|
-
- name: description
|
|
5
|
-
content: The <AwPage /> general container for internal pages in Awes.io.
|
|
6
|
-
title: Page
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
# AwPage
|
|
10
|
-
|
|
11
|
-
## Props
|
|
12
|
-
|
|
13
|
-
<!-- @vuese:AwPage:props:start -->
|
|
14
|
-
|Name|Description|Type|Required|Default|
|
|
15
|
-
|---|---|---|---|---|
|
|
16
|
-
|title|Main headline on the page|`String`|`false`|-|
|
|
17
|
-
|titleTag|-|`String`|`false`|-|
|
|
18
|
-
|className|-|`String`|`false`|-|
|
|
19
|
-
|subnav|Subnavigation for the page|`Array`|`false`|[]|
|
|
20
|
-
|breadcrumb|Breadcrumb object with title and href to return back|`Object`|`false`|-|
|
|
21
|
-
|
|
22
|
-
<!-- @vuese:AwPage:props:end -->
|
|
23
|
-
|
|
24
|
-
## Slots
|
|
25
|
-
|
|
26
|
-
<!-- @vuese:AwPage:slots:start -->
|
|
27
|
-
|Name|Description|Default Slot Content|
|
|
28
|
-
|---|---|---|
|
|
29
|
-
|breadcrumb|Breadcrumb link back to catalog|if prop breadctumb is empty, block is empty too|
|
|
30
|
-
|title|Title of the page|Empty string|
|
|
31
|
-
|buttons|-|-|
|
|
32
|
-
|subnav|-|-|
|
|
33
|
-
|default|-|-|
|
|
34
|
-
|
|
35
|
-
<!-- @vuese:AwPage:slots:end -->
|
|
36
|
-
|
package/docs/aw-pagination.md
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
metaTitle: Pagination сomponent | Awes.io
|
|
3
|
-
meta:
|
|
4
|
-
- name: description
|
|
5
|
-
content: The <AwPagination /> component is used to render Pagination - UI Vue component for Awes.io.
|
|
6
|
-
title: Pagination
|
|
7
|
-
---
|
|
8
|
-
# Pagination
|
|
9
|
-
|
|
10
|
-
The `AwPagination` component is used to render Pagination.
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
## Usage
|
|
14
|
-
Several examples how you can use `AwPagination`.
|
|
15
|
-
|
|
16
|
-
### Live Example
|
|
17
|
-
<iframe
|
|
18
|
-
src='https://codesandbox.io/embed/github/awes-io/client/tree/master/examples/basic-ui?autoresize=1&fontsize=14&hidenavigation=1&initialpath=%2Faw-form&module=%2Fpages%2Faw-form.vue&theme=dark&view=editor'
|
|
19
|
-
style='width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;'
|
|
20
|
-
title='basic-ui'
|
|
21
|
-
allow='geolocation; microphone; camera; midi; vr; accelerometer; gyroscope; payment; ambient-light-sensor; encrypted-media; usb'
|
|
22
|
-
sandbox='allow-modals allow-forms allow-popups allow-scripts allow-same-origin'
|
|
23
|
-
></iframe>
|
|
24
|
-
|
|
25
|
-
## API
|
|
26
|
-
Select your desired component from below and see the available props, slots, events and functions.
|
|
27
|
-
|
|
28
|
-
### Props
|
|
29
|
-
Below is a collection of Vue **props** for the `AwPagination` component.
|
|
30
|
-
<!-- @vuese:AwPagination:props:start -->
|
|
31
|
-
|Name|Description|Type|Required|Default|
|
|
32
|
-
|---|---|---|---|---|
|
|
33
|
-
|total|Total number of items|`Number`|`true`|-|
|
|
34
|
-
|page|Current page|`Number`|`false`|1|
|
|
35
|
-
|limit|Limit of items per page|`Number`|`true`|-|
|
|
36
|
-
|limits|Default limit variants|`Array`|`false`|-|
|
|
37
|
-
|arrowNav|Should the page being switched on `CTRL + <-` and `CTRL + ->`|`Boolean`|`false`|-|
|
|
38
|
-
|
|
39
|
-
<!-- @vuese:AwPagination:props:end -->
|
|
40
|
-
|
|
41
|
-
### Slots
|
|
42
|
-
Below is a collection of Vue **slots** for the `AwPagination` component.
|
|
43
|
-
<!-- @vuese:AwPagination:slots:start -->
|
|
44
|
-
|
|
45
|
-
<!-- @vuese:AwPagination:slots:end -->
|
|
46
|
-
|
|
47
|
-
### Events
|
|
48
|
-
Below is a collection of Vue **events** for the `AwPagination` component.
|
|
49
|
-
<!-- @vuese:AwPagination:events:start -->
|
|
50
|
-
|Event Name|Description|Parameters|
|
|
51
|
-
|---|---|---|
|
|
52
|
-
|click:page|-|-|
|
|
53
|
-
|
|
54
|
-
<!-- @vuese:AwPagination:events:end -->
|
package/docs/aw-password.md
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
metaTitle: Password сomponent | Awes.io
|
|
3
|
-
meta:
|
|
4
|
-
- name: description
|
|
5
|
-
content: The <AwPassword /> component is used to render Password - UI Vue component for Awes.io.
|
|
6
|
-
title: Password
|
|
7
|
-
---
|
|
8
|
-
# Password
|
|
9
|
-
|
|
10
|
-
The `AwPassword` component is used to render Password.
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
## Usage
|
|
14
|
-
Several examples how you can use `AwPassword`.
|
|
15
|
-
|
|
16
|
-
### Live Example
|
|
17
|
-
<iframe
|
|
18
|
-
src='https://codesandbox.io/embed/github/awes-io/client/tree/master/examples/basic-ui?autoresize=1&fontsize=14&hidenavigation=1&initialpath=%2Faw-input&module=%2Fpages%2Faw-input.vue&theme=dark&view=editor'
|
|
19
|
-
style='width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;'
|
|
20
|
-
title='basic-ui'
|
|
21
|
-
allow='geolocation; microphone; camera; midi; vr; accelerometer; gyroscope; payment; ambient-light-sensor; encrypted-media; usb'
|
|
22
|
-
sandbox='allow-modals allow-forms allow-popups allow-scripts allow-same-origin'
|
|
23
|
-
></iframe>
|
|
24
|
-
|
|
25
|
-
## API
|
|
26
|
-
Select your desired component from below and see the available props, slots, events and functions.
|
|
27
|
-
|
|
28
|
-
### Props
|
|
29
|
-
Below is a collection of Vue **props** for the `AwPassword` component.
|
|
30
|
-
<!-- @vuese:AwPassword:props:start -->
|
|
31
|
-
|
|
32
|
-
<!-- @vuese:AwPassword:props:end -->
|
|
33
|
-
|
|
34
|
-
### Slots
|
|
35
|
-
Below is a collection of Vue **slots** for the `AwPassword` component.
|
|
36
|
-
<!-- @vuese:AwPassword:slots:start -->
|
|
37
|
-
|
|
38
|
-
<!-- @vuese:AwPassword:slots:end -->
|
|
39
|
-
|
|
40
|
-
### Events
|
|
41
|
-
Below is a collection of Vue **events** for the `AwPassword` component.
|
|
42
|
-
<!-- @vuese:AwPassword:events:start -->
|
|
43
|
-
|Event Name|Description|Parameters|
|
|
44
|
-
|---|---|---|
|
|
45
|
-
|input|-|-|
|
|
46
|
-
|
|
47
|
-
<!-- @vuese:AwPassword:events:end -->
|
|
48
|
-
|
package/docs/aw-radio.md
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
metaTitle: Radio сomponent | Awes.io
|
|
3
|
-
meta:
|
|
4
|
-
- name: description
|
|
5
|
-
content: The <AwRadio /> component is used to render Radio - UI Vue component for Awes.io.
|
|
6
|
-
title: Radio
|
|
7
|
-
---
|
|
8
|
-
# Radio
|
|
9
|
-
|
|
10
|
-
The `AwRadio` component is used to render Radio.
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
## Usage
|
|
14
|
-
Several examples how you can use `AwRadio`.
|
|
15
|
-
|
|
16
|
-
### Live Example
|
|
17
|
-
<iframe
|
|
18
|
-
src='https://codesandbox.io/embed/github/awes-io/client/tree/master/examples/basic-ui?autoresize=1&fontsize=14&hidenavigation=1&initialpath=%2Faw-radio&module=%2Fpages%2Faw-radio.vue&theme=dark&view=editor'
|
|
19
|
-
style='width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;'
|
|
20
|
-
title='basic-ui'
|
|
21
|
-
allow='geolocation; microphone; camera; midi; vr; accelerometer; gyroscope; payment; ambient-light-sensor; encrypted-media; usb'
|
|
22
|
-
sandbox='allow-modals allow-forms allow-popups allow-scripts allow-same-origin'
|
|
23
|
-
></iframe>
|
|
24
|
-
|
|
25
|
-
## API
|
|
26
|
-
Select your desired component from below and see the available props, slots, events and functions.
|
|
27
|
-
|
|
28
|
-
### Props
|
|
29
|
-
Below is a collection of Vue **props** for the `AwRadio` component.
|
|
30
|
-
<!-- @vuese:AwRadio:props:start -->
|
|
31
|
-
|Name|Description|Type|Required|Default|
|
|
32
|
-
|---|---|---|---|---|
|
|
33
|
-
|value|-|`String` / `Number`|`false`|on|
|
|
34
|
-
|checked|-|`String` / `Number`|`false`|-|
|
|
35
|
-
|
|
36
|
-
<!-- @vuese:AwRadio:props:end -->
|
|
37
|
-
|
|
38
|
-
### Slots
|
|
39
|
-
Below is a collection of Vue **slots** for the `AwRadio` component.
|
|
40
|
-
<!-- @vuese:AwRadio:slots:start -->
|
|
41
|
-
|Name|Description|Default Slot Content|
|
|
42
|
-
|---|---|---|
|
|
43
|
-
|label|-|-|
|
|
44
|
-
|
|
45
|
-
<!-- @vuese:AwRadio:slots:end -->
|
|
46
|
-
|
|
47
|
-
### Events
|
|
48
|
-
Below is a collection of Vue **events** for the `AwRadio` component.
|
|
49
|
-
<!-- @vuese:AwRadio:events:start -->
|
|
50
|
-
|Event Name|Description|Parameters|
|
|
51
|
-
|---|---|---|
|
|
52
|
-
|change|-|-|
|
|
53
|
-
|
|
54
|
-
<!-- @vuese:AwRadio:events:end -->
|
package/docs/aw-search.md
DELETED
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
metaTitle: Search сomponent | Awes.io
|
|
3
|
-
meta:
|
|
4
|
-
- name: description
|
|
5
|
-
content: The <AwSearch /> component is used to render Search - UI Vue component for Awes.io.
|
|
6
|
-
title: Search
|
|
7
|
-
---
|
|
8
|
-
# Search
|
|
9
|
-
|
|
10
|
-
The `AwSearch` component is used to render Search.
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
## Usage
|
|
14
|
-
Several examples how you can use `AwSearch`.
|
|
15
|
-
|
|
16
|
-
### Live Example
|
|
17
|
-
<iframe
|
|
18
|
-
src='https://codesandbox.io/embed/github/awes-io/client/tree/master/examples/basic-ui?autoresize=1&fontsize=14&hidenavigation=1&initialpath=%2Faw-search&module=%2Fpages%2Faw-search.vue&theme=dark&view=editor'
|
|
19
|
-
style='width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;'
|
|
20
|
-
title='basic-ui'
|
|
21
|
-
allow='geolocation; microphone; camera; midi; vr; accelerometer; gyroscope; payment; ambient-light-sensor; encrypted-media; usb'
|
|
22
|
-
sandbox='allow-modals allow-forms allow-popups allow-scripts allow-same-origin'
|
|
23
|
-
></iframe>
|
|
24
|
-
|
|
25
|
-
## API
|
|
26
|
-
Select your desired component from below and see the available props, slots, events and functions.
|
|
27
|
-
|
|
28
|
-
### Props
|
|
29
|
-
Below is a collection of Vue **props** for the `AwSearch` component.
|
|
30
|
-
<!-- @vuese:AwSearch:props:start -->
|
|
31
|
-
|Name|Description|Type|Required|Default|
|
|
32
|
-
|---|---|---|---|---|
|
|
33
|
-
|param|Which GET-param should component set to query string|`String`|`false`|search|
|
|
34
|
-
|debounce|Debounce before query string update on user input|`Number`|`false`|400|
|
|
35
|
-
|globalKeyBind|If set, the component will listen on user input, and if the active element is not `input` or `textarea`, and `event.key` matches, the component will get focus. Pass `false` or empty string to disable|`String` / `Boolean`|`false`|/|
|
|
36
|
-
|
|
37
|
-
<!-- @vuese:AwSearch:props:end -->
|
|
38
|
-
|
|
39
|
-
### Slots
|
|
40
|
-
Below is a collection of Vue **slots** for the `AwSearch` component.
|
|
41
|
-
<!-- @vuese:AwSearch:slots:start -->
|
|
42
|
-
|
|
43
|
-
<!-- @vuese:AwSearch:slots:end -->
|
|
44
|
-
|
|
45
|
-
### Events
|
|
46
|
-
Below is a collection of Vue **events** for the `AwSearch` component.
|
|
47
|
-
<!-- @vuese:AwSearch:events:start -->
|
|
48
|
-
|
|
49
|
-
<!-- @vuese:AwSearch:events:end -->
|
package/docs/aw-select.md
DELETED
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
metaTitle: Select сomponent | Awes.io
|
|
3
|
-
meta:
|
|
4
|
-
- name: description
|
|
5
|
-
content: The <AwSelect /> component is used to render Select - UI Vue component for Awes.io.
|
|
6
|
-
title: Select
|
|
7
|
-
---
|
|
8
|
-
# Select
|
|
9
|
-
|
|
10
|
-
The `AwSelect` component is used to render Select.
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
## Usage
|
|
14
|
-
Several examples how you can use `AwSelect`.
|
|
15
|
-
|
|
16
|
-
### Default example
|
|
17
|
-
|
|
18
|
-
<iframe
|
|
19
|
-
src='https://codesandbox.io/embed/github/awes-io/client/tree/master/examples/basic-ui?autoresize=1&fontsize=14&hidenavigation=1&initialpath=%2Faw-select&module=%2Fpages%2Faw-select.vue&theme=dark&view=editor'
|
|
20
|
-
style='width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;'
|
|
21
|
-
title='basic-ui'
|
|
22
|
-
allow='geolocation; microphone; camera; midi; vr; accelerometer; gyroscope; payment; ambient-light-sensor; encrypted-media; usb'
|
|
23
|
-
sandbox='allow-modals allow-forms allow-popups allow-scripts allow-same-origin'
|
|
24
|
-
></iframe>
|
|
25
|
-
|
|
26
|
-
### Ajax usage
|
|
27
|
-
|
|
28
|
-
<iframe
|
|
29
|
-
src='https://codesandbox.io/embed/github/awes-io/client/tree/master/examples/basic-ui?autoresize=1&fontsize=14&hidenavigation=1&initialpath=%2Faw-select_ajax&module=%2Fpages%2Faw-select_ajax.vue&theme=dark'
|
|
30
|
-
style='width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;'
|
|
31
|
-
title='basic-ui'
|
|
32
|
-
allow='geolocation; microphone; camera; midi; vr; accelerometer; gyroscope; payment; ambient-light-sensor; encrypted-media; usb'
|
|
33
|
-
sandbox='allow-modals allow-forms allow-popups allow-scripts allow-same-origin'
|
|
34
|
-
></iframe>
|
|
35
|
-
|
|
36
|
-
### Object usage
|
|
37
|
-
|
|
38
|
-
<iframe
|
|
39
|
-
src='https://codesandbox.io/embed/github/awes-io/client/tree/master/examples/basic-ui?autoresize=1&fontsize=14&hidenavigation=1&initialpath=%2Faw-select_object&module=%2Fpages%2Faw-select_object.vue&theme=dark'
|
|
40
|
-
style='width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;'
|
|
41
|
-
title='basic-ui'
|
|
42
|
-
allow='geolocation; microphone; camera; midi; vr; accelerometer; gyroscope; payment; ambient-light-sensor; encrypted-media; usb'
|
|
43
|
-
sandbox='allow-modals allow-forms allow-popups allow-scripts allow-same-origin'
|
|
44
|
-
></iframe>
|
|
45
|
-
|
|
46
|
-
## API
|
|
47
|
-
Select your desired component from below and see the available props, slots, events and functions.
|
|
48
|
-
|
|
49
|
-
### Props
|
|
50
|
-
Below is a collection of Vue **props** for the `AwSelect` component.
|
|
51
|
-
<!-- @vuese:AwSelect:props:start -->
|
|
52
|
-
|Name|Description|Type|Required|Default|
|
|
53
|
-
|---|---|---|---|---|
|
|
54
|
-
|options|-|`Array` / `Function`|`false`|function means isAjax|
|
|
55
|
-
|label|-|`String`|`false`|-|
|
|
56
|
-
|value|-|—|`false`|-|
|
|
57
|
-
|optionLabel|-|`String`|`false`|-|
|
|
58
|
-
|trackBy|-|`String`|`false`|-|
|
|
59
|
-
|searchable|-|`Boolean`|`false`|-|
|
|
60
|
-
|clearable|Show clear button if value exists|`Boolean`|`false`|-|
|
|
61
|
-
|maxSearchItems|-|`Number`|`false`|100|
|
|
62
|
-
|multiple|name: { type: String, default: '' }, Allow select multiple values|`Boolean`|`false`|-|
|
|
63
|
-
|multipleSeparator|Separator for multiple values|`String`|`false`|, |
|
|
64
|
-
|searchPreload|ajax|`Array` / `Object` / `Boolean`|`false`|-|
|
|
65
|
-
|searchMin|-|`Number`|`false`|-|
|
|
66
|
-
|debounce|-|`Number`|`false`|400|
|
|
67
|
-
|
|
68
|
-
<!-- @vuese:AwSelect:props:end -->
|
|
69
|
-
|
|
70
|
-
### Slots
|
|
71
|
-
Below is a collection of Vue **slots** for the `AwSelect` component.
|
|
72
|
-
<!-- @vuese:AwSelect:slots:start -->
|
|
73
|
-
|Name|Description|Default Slot Content|
|
|
74
|
-
|---|---|---|
|
|
75
|
-
|dropdown|-|not equal|
|
|
76
|
-
|not-equal|-|-|
|
|
77
|
-
|option-label|-|-|
|
|
78
|
-
|not-found|-|-|
|
|
79
|
-
|
|
80
|
-
<!-- @vuese:AwSelect:slots:end -->
|
|
81
|
-
|
|
82
|
-
### Events
|
|
83
|
-
Below is a collection of Vue **events** for the `AwSelect` component.
|
|
84
|
-
<!-- @vuese:AwSelect:events:start -->
|
|
85
|
-
|Event Name|Description|Parameters|
|
|
86
|
-
|---|---|---|
|
|
87
|
-
|input|-|-|
|
|
88
|
-
|search|-|-|
|
|
89
|
-
|not-found|-|-|
|
|
90
|
-
|not-equal|-|-|
|
|
91
|
-
|preloaded|-|-|
|
|
92
|
-
|
|
93
|
-
<!-- @vuese:AwSelect:events:end -->
|
package/docs/aw-slider.md
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
metaTitle: Slider сomponent | Awes.io
|
|
3
|
-
meta:
|
|
4
|
-
- name: description
|
|
5
|
-
content: The <AwSlider /> component is used to render Slider - UI Vue component for Awes.io.
|
|
6
|
-
title: Slider
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
# AwSlider
|
|
10
|
-
|
|
11
|
-
## Props
|
|
12
|
-
|
|
13
|
-
<!-- @vuese:AwSlider:props:start -->
|
|
14
|
-
|Name|Description|Type|Required|Default|
|
|
15
|
-
|---|---|---|---|---|
|
|
16
|
-
|tag|-|`String`|`false`|div|
|
|
17
|
-
|
|
18
|
-
<!-- @vuese:AwSlider:props:end -->
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
## Events
|
|
22
|
-
|
|
23
|
-
<!-- @vuese:AwSlider:events:start -->
|
|
24
|
-
|Event Name|Description|Parameters|
|
|
25
|
-
|---|---|---|
|
|
26
|
-
|resized|-|-|
|
|
27
|
-
|
|
28
|
-
<!-- @vuese:AwSlider:events:end -->
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
## Slots
|
|
32
|
-
|
|
33
|
-
<!-- @vuese:AwSlider:slots:start -->
|
|
34
|
-
|Name|Description|Default Slot Content|
|
|
35
|
-
|---|---|---|
|
|
36
|
-
|default|-|-|
|
|
37
|
-
|
|
38
|
-
<!-- @vuese:AwSlider:slots:end -->
|
|
39
|
-
|
|
40
|
-
|
package/docs/aw-svg-image.md
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
metaTitle: SvgImage сomponent | Awes.io
|
|
3
|
-
meta:
|
|
4
|
-
- name: description
|
|
5
|
-
content: The <AwSvgImage /> component is used to render SvgImage - UI Vue component for Awes.io.
|
|
6
|
-
title: SvgImage
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
# AwSvgImage
|
|
10
|
-
|
|
11
|
-
## Props
|
|
12
|
-
|
|
13
|
-
<!-- @vuese:AwSvgImage:props:start -->
|
|
14
|
-
|Name|Description|Type|Required|Default|
|
|
15
|
-
|---|---|---|---|---|
|
|
16
|
-
|name|Name of the svg image|`String`|`true`|-|
|
|
17
|
-
|
|
18
|
-
<!-- @vuese:AwSvgImage:props:end -->
|
|
19
|
-
|
package/docs/aw-switcher.md
DELETED
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
metaTitle: Switcher сomponent | Awes.io
|
|
3
|
-
meta:
|
|
4
|
-
- name: description
|
|
5
|
-
content: The <AwSwitcher /> component is used to render Switcher - UI Vue component for Awes.io.
|
|
6
|
-
title: Switcher
|
|
7
|
-
---
|
|
8
|
-
# Switcher
|
|
9
|
-
|
|
10
|
-
The `AwSwitcher` component is used to render Switcher.
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
## Usage
|
|
14
|
-
Several examples how you can use `AwSwitcher`.
|
|
15
|
-
|
|
16
|
-
### Live Example
|
|
17
|
-
<iframe
|
|
18
|
-
src='https://codesandbox.io/embed/github/awes-io/client/tree/master/examples/basic-ui?autoresize=1&fontsize=14&hidenavigation=1&initialpath=%2Faw-switcher&module=%2Fpages%2Faw-switcher.vue&theme=dark&view=editor'
|
|
19
|
-
style='width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;'
|
|
20
|
-
title='basic-ui'
|
|
21
|
-
allow='geolocation; microphone; camera; midi; vr; accelerometer; gyroscope; payment; ambient-light-sensor; encrypted-media; usb'
|
|
22
|
-
sandbox='allow-modals allow-forms allow-popups allow-scripts allow-same-origin'
|
|
23
|
-
></iframe>
|
|
24
|
-
|
|
25
|
-
## API
|
|
26
|
-
Select your desired component from below and see the available props, slots, events and functions.
|
|
27
|
-
|
|
28
|
-
### Props
|
|
29
|
-
Below is a collection of Vue **props** for the `AwSwitcher` component.
|
|
30
|
-
<!-- @vuese:AwSwitcher:props:start -->
|
|
31
|
-
|
|
32
|
-
<!-- @vuese:AwSwitcher:props:end -->
|
|
33
|
-
|
|
34
|
-
### Slots
|
|
35
|
-
Below is a collection of Vue **slots** for the `AwSwitcher` component.
|
|
36
|
-
<!-- @vuese:AwSwitcher:slots:start -->
|
|
37
|
-
|Name|Description|Default Slot Content|
|
|
38
|
-
|---|---|---|
|
|
39
|
-
|default|-|-|
|
|
40
|
-
|label|-|-|
|
|
41
|
-
|
|
42
|
-
<!-- @vuese:AwSwitcher:slots:end -->
|
|
43
|
-
|
|
44
|
-
### Events
|
|
45
|
-
Below is a collection of Vue **events** for the `AwSwitcher` component.
|
|
46
|
-
<!-- @vuese:AwSwitcher:events:start -->
|
|
47
|
-
|Event Name|Description|Parameters|
|
|
48
|
-
|---|---|---|
|
|
49
|
-
|change|-|-|
|
|
50
|
-
|
|
51
|
-
<!-- @vuese:AwSwitcher:events:end -->
|
package/docs/aw-tab-nav.md
DELETED
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
metaTitle: Tab nav сomponent | Awes.io
|
|
3
|
-
meta:
|
|
4
|
-
- name: description
|
|
5
|
-
content: The <AwTabNav /> component is used to render Tab nav - UI Vue component for Awes.io.
|
|
6
|
-
title: Tab nav
|
|
7
|
-
---
|
|
8
|
-
# Tab nav
|
|
9
|
-
|
|
10
|
-
The `AwTabNav` component is used to render Tab nav.
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
## Usage
|
|
14
|
-
Several examples how you can use `AwTabNav`.
|
|
15
|
-
|
|
16
|
-
### Live Example
|
|
17
|
-
<iframe
|
|
18
|
-
src='https://codesandbox.io/embed/github/awes-io/client/tree/master/examples/basic-ui?autoresize=1&fontsize=14&hidenavigation=1&initialpath=%2Faw-tab-nav&module=%2Fpages%2Faw-tab-nav.vue&theme=dark&view=editor'
|
|
19
|
-
style='width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;'
|
|
20
|
-
title='basic-ui'
|
|
21
|
-
allow='geolocation; microphone; camera; midi; vr; accelerometer; gyroscope; payment; ambient-light-sensor; encrypted-media; usb'
|
|
22
|
-
sandbox='allow-modals allow-forms allow-popups allow-scripts allow-same-origin'
|
|
23
|
-
></iframe>
|
|
24
|
-
|
|
25
|
-
## API
|
|
26
|
-
Select your desired component from below and see the available props, slots, events and functions.
|
|
27
|
-
|
|
28
|
-
### Props
|
|
29
|
-
Below is a collection of Vue **props** for the `AwTabNav` component.
|
|
30
|
-
<!-- @vuese:AwTabNav:props:start -->
|
|
31
|
-
|Name|Description|Type|Required|Default|
|
|
32
|
-
|---|---|---|---|---|
|
|
33
|
-
|items|Array of tab objects with `text` property or array of strings which become button names|`Array`|`true`|-|
|
|
34
|
-
|active|Active tab index (for button tabs)|`Number` / `Array`|`false`|-|
|
|
35
|
-
|
|
36
|
-
<!-- @vuese:AwTabNav:props:end -->
|
|
37
|
-
|
|
38
|
-
### Slots
|
|
39
|
-
Below is a collection of Vue **slots** for the `AwTabNav` component.
|
|
40
|
-
<!-- @vuese:AwTabNav:slots:start -->
|
|
41
|
-
|Name|Description|Default Slot Content|
|
|
42
|
-
|---|---|---|
|
|
43
|
-
|default|-|-|
|
|
44
|
-
|
|
45
|
-
<!-- @vuese:AwTabNav:slots:end -->
|
|
46
|
-
|
|
47
|
-
### Events
|
|
48
|
-
Below is a collection of Vue **events** for the `AwTabNav` component.
|
|
49
|
-
<!-- @vuese:AwTabNav:events:start -->
|
|
50
|
-
|Event Name|Description|Parameters|
|
|
51
|
-
|---|---|---|
|
|
52
|
-
|update:active|-|-|
|
|
53
|
-
|
|
54
|
-
<!-- @vuese:AwTabNav:events:end -->
|
|
55
|
-
|