vueless 0.0.106 → 0.0.108
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/adatper.locale/locales/en.js +1 -1
- package/index.js +1 -1
- package/package.json +4 -4
- package/service.storybook/index.js +10 -1
- package/ui.button/index.stories.js +3 -0
- package/ui.button-toggle/index.vue +1 -0
- package/ui.container-modal/configs/default.config.js +1 -1
- package/ui.container-modal/index.vue +1 -1
- package/ui.dropdown-list/index.vue +1 -1
- package/ui.form-checkbox-group/configs/default.config.js +3 -0
- package/ui.form-checkbox-group/index.vue +1 -1
- package/ui.form-color-picker/index.vue +3 -2
- package/ui.form-date-picker-range/configs/default.config.js +0 -8
- package/ui.form-date-picker-range/index.vue +5 -1
- package/ui.form-input-file/index.vue +15 -11
- package/ui.form-radio/configs/default.config.js +1 -0
- package/ui.image-icon/configs/default.config.js +1 -1
- package/ui.image-icon/index.vue +0 -8
- package/ui.loader/index.stories.js +1 -1
- package/ui.loader-rendering/index.stories.js +3 -3
- package/ui.loader-top/composables/attrs.composable.js +2 -2
- package/ui.loader-top/index.stories.js +3 -3
- package/ui.navigation-pagination/index.stories.js +1 -1
- package/{ui.progress → ui.navigation-progress}/index.stories.js +2 -2
- package/ui.other-dot/index.stories.js +1 -1
- package/ui.text-alert/configs/default.config.js +1 -1
- package/ui.text-block/configs/default.config.js +1 -0
- package/ui.text-money/configs/default.config.js +1 -1
- package/ui.text-money/index.stories.js +0 -1
- package/{ui.notify → ui.text-notify}/index.stories.js +4 -3
- package/web-types.json +19 -25
- /package/{ui.progress → ui.navigation-progress}/composables/attrs.composable.js +0 -0
- /package/{ui.progress → ui.navigation-progress}/configs/default.config.js +0 -0
- /package/{ui.progress → ui.navigation-progress}/constants/index.js +0 -0
- /package/{ui.progress → ui.navigation-progress}/index.vue +0 -0
- /package/{ui.notify → ui.text-notify}/Docs.mdx +0 -0
- /package/{ui.notify → ui.text-notify}/composables/attrs.composable.js +0 -0
- /package/{ui.notify → ui.text-notify}/configs/default.config.js +0 -0
- /package/{ui.notify → ui.text-notify}/constants/index.js +0 -0
- /package/{ui.notify → ui.text-notify}/index.vue +0 -0
- /package/{ui.notify → ui.text-notify}/services/index.js +0 -0
|
@@ -8,7 +8,7 @@ import calendarConfig from "../../ui.form-calendar/configs/default.config";
|
|
|
8
8
|
import datepickerConfig from "../../ui.form-date-picker/configs/default.config";
|
|
9
9
|
import datepickerRangeConfig from "../../ui.form-date-picker-range/configs/default.config";
|
|
10
10
|
import dataListConfig from "../../ui.data-list/configs/default.config";
|
|
11
|
-
import notifyDefaultConfig from "../../ui.notify/configs/default.config";
|
|
11
|
+
import notifyDefaultConfig from "../../ui.text-notify/configs/default.config";
|
|
12
12
|
|
|
13
13
|
export default {
|
|
14
14
|
USelect: selectConfig.i18n,
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vueless",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.108",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Vue Styleless Component Framework.",
|
|
6
6
|
"homepage": "https://vueless.com",
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
"release:patch": "release-it patch --ci --npm.publish",
|
|
18
18
|
"release:minor": "release-it minor --ci --npm.publish --git.tag --github.release",
|
|
19
19
|
"release:major": "release-it major --ci --npm.publish --git.tag --github.release",
|
|
20
|
-
"sb:dev-full": "STORYBOOK_FULL=1 storybook dev -p 6006 --no-open",
|
|
21
|
-
"sb:dev": "storybook dev -p 6006 --docs --no-open",
|
|
22
|
-
"sb:build": "storybook build --docs",
|
|
20
|
+
"sb:dev-full": "npx @vueless/web-types && node prepare.icons && STORYBOOK_FULL=1 storybook dev -p 6006 --no-open",
|
|
21
|
+
"sb:dev": "npx @vueless/web-types && node prepare.icons && storybook dev -p 6006 --docs --no-open",
|
|
22
|
+
"sb:build": "npx @vueless/web-types && node prepare.icons && storybook build --docs",
|
|
23
23
|
"sb:preview": "vite preview --host --outDir=storybook-static",
|
|
24
24
|
"package:prepare": "npx @vueless/web-types && node prepare.icons && rm -rf dist && mkdir -p dist && cp -r src/. package.json LICENSE web-types.json README.md dist/ && node prepare.dist"
|
|
25
25
|
},
|
|
@@ -22,7 +22,7 @@ export function getArgTypes(componentName) {
|
|
|
22
22
|
component.attributes?.forEach((attribute) => {
|
|
23
23
|
const type = attribute.value.type;
|
|
24
24
|
|
|
25
|
-
if (type === "string") {
|
|
25
|
+
if (type === "string" || type.includes("string")) {
|
|
26
26
|
types[attribute.name] = {
|
|
27
27
|
control: "text",
|
|
28
28
|
table: {
|
|
@@ -49,6 +49,15 @@ export function getArgTypes(componentName) {
|
|
|
49
49
|
};
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
+
if (type === "array") {
|
|
53
|
+
types[attribute.name] = {
|
|
54
|
+
control: "array",
|
|
55
|
+
table: {
|
|
56
|
+
defaultValue: { summary: attribute.default || [] },
|
|
57
|
+
},
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
|
|
52
61
|
if (type.includes("|")) {
|
|
53
62
|
const options = attribute.value.type.replace(/['|]/g, "").split(/\s+/);
|
|
54
63
|
|
|
@@ -5,6 +5,9 @@ import UIcon from "../ui.image-icon";
|
|
|
5
5
|
import URow from "../ui.container-row";
|
|
6
6
|
import UGroup from "../ui.container-group";
|
|
7
7
|
|
|
8
|
+
/**
|
|
9
|
+
* The `UButton` component. | [ view on GitHub](https://github.com/vuelessjs/vueless/tree/main/src/ui.button)
|
|
10
|
+
*/
|
|
8
11
|
export default {
|
|
9
12
|
id: "1010",
|
|
10
13
|
title: "Buttons & Links / Button",
|
|
@@ -56,7 +56,7 @@ import { computed } from "vue";
|
|
|
56
56
|
import UIcon from "../ui.image-icon";
|
|
57
57
|
import URadio from "../ui.form-radio";
|
|
58
58
|
import ULabel from "../ui.form-label";
|
|
59
|
-
import UIService
|
|
59
|
+
import UIService from "../service.ui";
|
|
60
60
|
|
|
61
61
|
import { UColorPicker } from "./constants";
|
|
62
62
|
import defaultConfig from "./configs/default.config";
|
|
@@ -120,7 +120,8 @@ const props = defineProps({
|
|
|
120
120
|
*/
|
|
121
121
|
name: {
|
|
122
122
|
type: String,
|
|
123
|
-
|
|
123
|
+
required: true,
|
|
124
|
+
default: "",
|
|
124
125
|
},
|
|
125
126
|
|
|
126
127
|
/**
|
|
@@ -185,14 +185,6 @@ export default /*tw*/ {
|
|
|
185
185
|
defaultVariants: {
|
|
186
186
|
size: "md",
|
|
187
187
|
variant: "button",
|
|
188
|
-
customRangeButton: {
|
|
189
|
-
range: {
|
|
190
|
-
from: 0,
|
|
191
|
-
to: 0,
|
|
192
|
-
},
|
|
193
|
-
label: "",
|
|
194
|
-
description: "",
|
|
195
|
-
},
|
|
196
188
|
timepicker: false,
|
|
197
189
|
disabled: false,
|
|
198
190
|
dateFormat: "d.m.Y",
|
|
@@ -265,7 +265,11 @@ const props = defineProps({
|
|
|
265
265
|
*/
|
|
266
266
|
customRangeButton: {
|
|
267
267
|
type: Object,
|
|
268
|
-
default: () =>
|
|
268
|
+
default: () => ({
|
|
269
|
+
range: { from: 0, to: 0 },
|
|
270
|
+
label: "",
|
|
271
|
+
description: "",
|
|
272
|
+
}),
|
|
269
273
|
},
|
|
270
274
|
|
|
271
275
|
/**
|
|
@@ -1,34 +1,37 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<ULabel :
|
|
2
|
+
<ULabel :label="label" :align="labelAlign" :error="error" :size="size" v-bind="labelAttrs">
|
|
3
3
|
<div ref="dropZoneRef" :ondrop="onDrop" v-bind="dropzoneWrapperAttrs">
|
|
4
|
-
<UText :size="nestedComponentSize" v-bind="descriptionAttrs"
|
|
4
|
+
<UText :size="nestedComponentSize" :html="description" v-bind="descriptionAttrs" />
|
|
5
5
|
|
|
6
6
|
<div v-bind="contentWrapperAttrs">
|
|
7
|
+
<!-- @slot Use it to add something before placeholder. -->
|
|
7
8
|
<slot name="left" />
|
|
9
|
+
|
|
8
10
|
<span v-if="!isValue" v-bind="placeholderAttrs" v-text="currentLocale.noFile" />
|
|
11
|
+
|
|
9
12
|
<div v-else v-bind="fileListAttrs">
|
|
10
13
|
<template v-if="props.multiple">
|
|
11
14
|
<span
|
|
12
15
|
v-for="(file, idx) in currentFiles"
|
|
13
|
-
v-bind="selectedItemAttrs"
|
|
14
16
|
:key="idx"
|
|
17
|
+
v-bind="selectedItemAttrs"
|
|
15
18
|
v-text="file.name"
|
|
16
19
|
/>
|
|
17
20
|
</template>
|
|
21
|
+
|
|
18
22
|
<span v-else v-bind="selectedItemAttrs" v-text="currentFiles.name" />
|
|
19
23
|
</div>
|
|
20
24
|
|
|
21
25
|
<div v-bind="buttonWrapperAttrs">
|
|
22
26
|
<template v-if="Array.isArray(currentFiles) || !currentFiles">
|
|
23
27
|
<UButton
|
|
24
|
-
class="hover:cursor-pointer"
|
|
25
|
-
:label="currentLocale.uploadFile"
|
|
26
|
-
variant="thirdary"
|
|
27
28
|
filled
|
|
28
|
-
:size="nestedComponentSize"
|
|
29
|
-
v-bind="buttonAttrs"
|
|
30
29
|
tag="label"
|
|
31
30
|
:for="id"
|
|
31
|
+
variant="thirdary"
|
|
32
|
+
:size="nestedComponentSize"
|
|
33
|
+
:label="currentLocale.uploadFile"
|
|
34
|
+
v-bind="buttonAttrs"
|
|
32
35
|
>
|
|
33
36
|
<template #right>
|
|
34
37
|
<UIcon
|
|
@@ -43,20 +46,21 @@
|
|
|
43
46
|
<input
|
|
44
47
|
:id="id"
|
|
45
48
|
ref="fileInputRef"
|
|
46
|
-
:multiple="multiple"
|
|
47
49
|
type="file"
|
|
48
50
|
:accept="accept"
|
|
51
|
+
:multiple="multiple"
|
|
49
52
|
v-bind="inputAttrs"
|
|
50
53
|
@change="onChangeFile"
|
|
51
54
|
/>
|
|
52
55
|
</template>
|
|
56
|
+
|
|
53
57
|
<UIcon
|
|
54
58
|
v-if="isValue"
|
|
55
|
-
|
|
59
|
+
pill
|
|
56
60
|
internal
|
|
61
|
+
interactive
|
|
57
62
|
:size="nestedComponentSize"
|
|
58
63
|
:name="config.clearIconName"
|
|
59
|
-
pill
|
|
60
64
|
v-bind="clearIconAttrs"
|
|
61
65
|
@click="onClickResetFiles"
|
|
62
66
|
/>
|
package/ui.image-icon/index.vue
CHANGED
|
@@ -46,14 +46,6 @@ const props = defineProps({
|
|
|
46
46
|
default: "",
|
|
47
47
|
},
|
|
48
48
|
|
|
49
|
-
/**
|
|
50
|
-
* Change icon variant from outline to filled.
|
|
51
|
-
*/
|
|
52
|
-
fill: {
|
|
53
|
-
type: Boolean,
|
|
54
|
-
default: UIService.get(defaultConfig, UIcon).default.fill,
|
|
55
|
-
},
|
|
56
|
-
|
|
57
49
|
/**
|
|
58
50
|
* Icon color.
|
|
59
51
|
* @values brand, grayscale, gray, red, orange, amber, yellow, lime, green, emerald, teal, cyan, sky, blue, indigo, violet, purple, fuchsia, pink, rose, white
|
|
@@ -6,7 +6,7 @@ import { useLoaderRendering } from "./composables/useLoaderRendering";
|
|
|
6
6
|
import { getArgTypes } from "../service.storybook";
|
|
7
7
|
|
|
8
8
|
export default {
|
|
9
|
-
id: "
|
|
9
|
+
id: "9030",
|
|
10
10
|
title: "Loaders and Skeletons / Loader rendering",
|
|
11
11
|
component: ULoaderRendering,
|
|
12
12
|
argTypes: {
|
|
@@ -21,7 +21,7 @@ const DefaultTemplate = (args) => ({
|
|
|
21
21
|
},
|
|
22
22
|
template: `
|
|
23
23
|
<div>
|
|
24
|
-
|
|
24
|
+
<ULoaderRendering v-bind="args" class="!static !w-full" />
|
|
25
25
|
</div>
|
|
26
26
|
`,
|
|
27
27
|
});
|
|
@@ -43,7 +43,7 @@ const LoadingTemplate = (args) => ({
|
|
|
43
43
|
<UButton label="Toggle loading" @click="toggleLoading"/>
|
|
44
44
|
</div>
|
|
45
45
|
<div>
|
|
46
|
-
|
|
46
|
+
<ULoaderRendering v-bind="args" class="!static !w-full" />
|
|
47
47
|
</div>
|
|
48
48
|
`,
|
|
49
49
|
});
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import ULoaderTop from "../ui.loader-top";
|
|
2
2
|
import UButton from "../ui.button";
|
|
3
3
|
|
|
4
|
-
import { useLoaderTop } from "
|
|
5
|
-
import { loaderTopOff, loaderTopOn } from "
|
|
4
|
+
import { useLoaderTop } from "./composables/useLoaderTop";
|
|
5
|
+
import { loaderTopOff, loaderTopOn } from "./services/loaderTop.service";
|
|
6
6
|
|
|
7
7
|
import { getArgTypes } from "../service.storybook";
|
|
8
8
|
|
|
9
9
|
export default {
|
|
10
|
-
id: "
|
|
10
|
+
id: "9020",
|
|
11
11
|
title: "Loaders and Skeletons / Loader top",
|
|
12
12
|
component: ULoaderTop,
|
|
13
13
|
argTypes: {
|
|
@@ -4,8 +4,8 @@ import UButton from "../ui.button/index.vue";
|
|
|
4
4
|
import { getArgTypes } from "../service.storybook";
|
|
5
5
|
|
|
6
6
|
export default {
|
|
7
|
-
id: "
|
|
8
|
-
title: "
|
|
7
|
+
id: "8040",
|
|
8
|
+
title: "Navigation / Progress",
|
|
9
9
|
component: UProgress,
|
|
10
10
|
argTypes: {
|
|
11
11
|
...getArgTypes(UProgress.name),
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
import { notify } from "
|
|
1
|
+
import { notify } from "./services";
|
|
2
2
|
|
|
3
|
-
import UNotify from "../ui.notify";
|
|
3
|
+
import UNotify from "../ui.text-notify";
|
|
4
4
|
import UButton from "../ui.button";
|
|
5
5
|
|
|
6
6
|
import { getArgTypes } from "../service.storybook";
|
|
7
7
|
|
|
8
8
|
export default {
|
|
9
|
-
|
|
9
|
+
id: "4035",
|
|
10
|
+
title: "Text & Content / Notify",
|
|
10
11
|
component: UNotify,
|
|
11
12
|
args: {
|
|
12
13
|
type: "success",
|
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"framework": "vue",
|
|
3
3
|
"name": "vueless",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.108",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
7
7
|
"description-markup": "markdown",
|
|
@@ -306,7 +306,7 @@
|
|
|
306
306
|
"kind": "expression",
|
|
307
307
|
"type": "boolean"
|
|
308
308
|
},
|
|
309
|
-
"default": "
|
|
309
|
+
"default": "false"
|
|
310
310
|
},
|
|
311
311
|
{
|
|
312
312
|
"name": "config",
|
|
@@ -1116,7 +1116,7 @@
|
|
|
1116
1116
|
"kind": "expression",
|
|
1117
1117
|
"type": "boolean"
|
|
1118
1118
|
},
|
|
1119
|
-
"default": "
|
|
1119
|
+
"default": "false"
|
|
1120
1120
|
},
|
|
1121
1121
|
{
|
|
1122
1122
|
"name": "id",
|
|
@@ -1143,7 +1143,7 @@
|
|
|
1143
1143
|
"kind": "expression",
|
|
1144
1144
|
"type": "string"
|
|
1145
1145
|
},
|
|
1146
|
-
"default": "\"
|
|
1146
|
+
"default": "\"\""
|
|
1147
1147
|
}
|
|
1148
1148
|
],
|
|
1149
1149
|
"events": [
|
|
@@ -1317,12 +1317,13 @@
|
|
|
1317
1317
|
},
|
|
1318
1318
|
{
|
|
1319
1319
|
"name": "name",
|
|
1320
|
+
"required": true,
|
|
1320
1321
|
"description": "Color picker name.",
|
|
1321
1322
|
"value": {
|
|
1322
1323
|
"kind": "expression",
|
|
1323
1324
|
"type": "string"
|
|
1324
1325
|
},
|
|
1325
|
-
"default": "
|
|
1326
|
+
"default": "\"\""
|
|
1326
1327
|
},
|
|
1327
1328
|
{
|
|
1328
1329
|
"name": "disabled",
|
|
@@ -1666,7 +1667,7 @@
|
|
|
1666
1667
|
"kind": "expression",
|
|
1667
1668
|
"type": "object"
|
|
1668
1669
|
},
|
|
1669
|
-
"default": "
|
|
1670
|
+
"default": "{\n range: { from: 0, to: 0 },\n label: \"\",\n description: \"\"\n}"
|
|
1670
1671
|
},
|
|
1671
1672
|
{
|
|
1672
1673
|
"name": "variant",
|
|
@@ -2630,7 +2631,7 @@
|
|
|
2630
2631
|
"description": "List max height in pixels.",
|
|
2631
2632
|
"value": {
|
|
2632
2633
|
"kind": "expression",
|
|
2633
|
-
"type": "number
|
|
2634
|
+
"type": "number"
|
|
2634
2635
|
},
|
|
2635
2636
|
"default": "undefined"
|
|
2636
2637
|
},
|
|
@@ -3121,15 +3122,6 @@
|
|
|
3121
3122
|
},
|
|
3122
3123
|
"default": ""
|
|
3123
3124
|
},
|
|
3124
|
-
{
|
|
3125
|
-
"name": "fill",
|
|
3126
|
-
"description": "Change icon variant from outline to filled.",
|
|
3127
|
-
"value": {
|
|
3128
|
-
"kind": "expression",
|
|
3129
|
-
"type": "boolean"
|
|
3130
|
-
},
|
|
3131
|
-
"default": "false"
|
|
3132
|
-
},
|
|
3133
3125
|
{
|
|
3134
3126
|
"name": "color",
|
|
3135
3127
|
"description": "Icon color.",
|
|
@@ -3155,7 +3147,7 @@
|
|
|
3155
3147
|
"kind": "expression",
|
|
3156
3148
|
"type": "boolean"
|
|
3157
3149
|
},
|
|
3158
|
-
"default": "
|
|
3150
|
+
"default": "false"
|
|
3159
3151
|
},
|
|
3160
3152
|
{
|
|
3161
3153
|
"name": "variant",
|
|
@@ -3550,7 +3542,8 @@
|
|
|
3550
3542
|
],
|
|
3551
3543
|
"slots": [
|
|
3552
3544
|
{
|
|
3553
|
-
"name": "left"
|
|
3545
|
+
"name": "left",
|
|
3546
|
+
"description": "Use it to add something before placeholder."
|
|
3554
3547
|
}
|
|
3555
3548
|
],
|
|
3556
3549
|
"source": {
|
|
@@ -4644,7 +4637,7 @@
|
|
|
4644
4637
|
"kind": "expression",
|
|
4645
4638
|
"type": "'brand' | 'grayscale' | 'gray' | 'red' | 'orange' | 'amber' | 'yellow' | 'lime' | 'green' | 'emerald' | 'teal' | 'cyan' | 'sky' | 'blue' | 'indigo' | 'violet' | 'purple' | 'fuchsia' | 'pink' | 'rose'"
|
|
4646
4639
|
},
|
|
4647
|
-
"default": "
|
|
4640
|
+
"default": "brand"
|
|
4648
4641
|
},
|
|
4649
4642
|
{
|
|
4650
4643
|
"name": "description",
|
|
@@ -5024,7 +5017,7 @@
|
|
|
5024
5017
|
"kind": "expression",
|
|
5025
5018
|
"type": "number"
|
|
5026
5019
|
},
|
|
5027
|
-
"default": "
|
|
5020
|
+
"default": "2"
|
|
5028
5021
|
},
|
|
5029
5022
|
{
|
|
5030
5023
|
"name": "delimiter",
|
|
@@ -5128,7 +5121,7 @@
|
|
|
5128
5121
|
}
|
|
5129
5122
|
],
|
|
5130
5123
|
"source": {
|
|
5131
|
-
"module": "vueless/ui.notify/index.vue",
|
|
5124
|
+
"module": "vueless/ui.text-notify/index.vue",
|
|
5132
5125
|
"symbol": "default"
|
|
5133
5126
|
}
|
|
5134
5127
|
},
|
|
@@ -5472,7 +5465,7 @@
|
|
|
5472
5465
|
}
|
|
5473
5466
|
],
|
|
5474
5467
|
"source": {
|
|
5475
|
-
"module": "vueless/ui.progress/index.vue",
|
|
5468
|
+
"module": "vueless/ui.navigation-progress/index.vue",
|
|
5476
5469
|
"symbol": "default"
|
|
5477
5470
|
}
|
|
5478
5471
|
},
|
|
@@ -5541,7 +5534,7 @@
|
|
|
5541
5534
|
"kind": "expression",
|
|
5542
5535
|
"type": "'top' | 'topInside' | 'topWithDesc' | 'bottom' | 'left' | 'right'"
|
|
5543
5536
|
},
|
|
5544
|
-
"default": "
|
|
5537
|
+
"default": "left"
|
|
5545
5538
|
},
|
|
5546
5539
|
{
|
|
5547
5540
|
"name": "disabled",
|
|
@@ -6731,7 +6724,7 @@
|
|
|
6731
6724
|
"kind": "expression",
|
|
6732
6725
|
"type": "boolean"
|
|
6733
6726
|
},
|
|
6734
|
-
"default": "
|
|
6727
|
+
"default": "false"
|
|
6735
6728
|
},
|
|
6736
6729
|
{
|
|
6737
6730
|
"name": "config",
|
|
@@ -7031,7 +7024,8 @@
|
|
|
7031
7024
|
],
|
|
7032
7025
|
"slots": [
|
|
7033
7026
|
{
|
|
7034
|
-
"name": "default"
|
|
7027
|
+
"name": "default",
|
|
7028
|
+
"description": "Use it to add UToggleItem directly."
|
|
7035
7029
|
}
|
|
7036
7030
|
],
|
|
7037
7031
|
"source": {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|