@symbo.ls/uikit 2.11.133 → 2.11.136
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/dist/index.cjs.js +16 -27
- package/dist/index.cjs.js.map +4 -4
- package/index.js +4 -0
- package/package.json +7 -5
package/dist/index.cjs.js
CHANGED
|
@@ -9271,6 +9271,8 @@ __export(domql_exports, {
|
|
|
9271
9271
|
Button: () => Button,
|
|
9272
9272
|
ButtonSet: () => ButtonSet,
|
|
9273
9273
|
Caption: () => Caption,
|
|
9274
|
+
Card: () => Card,
|
|
9275
|
+
Chat: () => Chat,
|
|
9274
9276
|
CheckBoxWithLabel: () => CheckBoxWithLabel,
|
|
9275
9277
|
Checkbox: () => Checkbox,
|
|
9276
9278
|
Circle: () => Circle,
|
|
@@ -9366,7 +9368,7 @@ __export(domql_exports, {
|
|
|
9366
9368
|
UploadModalLabel: () => UploadModalLabel,
|
|
9367
9369
|
UploadProgress: () => UploadProgress,
|
|
9368
9370
|
UploadResult: () => UploadResult,
|
|
9369
|
-
|
|
9371
|
+
User: () => User,
|
|
9370
9372
|
XYZ: () => XYZ,
|
|
9371
9373
|
calendar: () => calendar,
|
|
9372
9374
|
getSystemTheme: () => getSystemTheme,
|
|
@@ -13292,30 +13294,6 @@ var Field = {
|
|
|
13292
13294
|
input: { extend: [Focusable2, Input2] }
|
|
13293
13295
|
};
|
|
13294
13296
|
|
|
13295
|
-
// Video/index.js
|
|
13296
|
-
var Video = {
|
|
13297
|
-
tag: "video",
|
|
13298
|
-
childExtend: {
|
|
13299
|
-
tag: "source",
|
|
13300
|
-
attr: {
|
|
13301
|
-
src: ({ props: props6 }) => props6.src,
|
|
13302
|
-
controls: ({ props: props6 }) => props6.controls
|
|
13303
|
-
}
|
|
13304
|
-
},
|
|
13305
|
-
props: {
|
|
13306
|
-
controls: true
|
|
13307
|
-
},
|
|
13308
|
-
attr: {
|
|
13309
|
-
src: ({ props: props6 }) => props6.src,
|
|
13310
|
-
autoplay: ({ props: props6 }) => props6.autoplay,
|
|
13311
|
-
loop: ({ props: props6 }) => props6.loop,
|
|
13312
|
-
poster: ({ props: props6 }) => props6.poster,
|
|
13313
|
-
muted: ({ props: props6 }) => props6.muted,
|
|
13314
|
-
preload: ({ props: props6 }) => props6.preload,
|
|
13315
|
-
controls: ({ props: props6 }) => props6.controls
|
|
13316
|
-
}
|
|
13317
|
-
};
|
|
13318
|
-
|
|
13319
13297
|
// Range/index.js
|
|
13320
13298
|
var import_utils12 = __toESM(require_cjs2());
|
|
13321
13299
|
var import_scratch19 = __toESM(require_cjs());
|
|
@@ -13944,8 +13922,8 @@ var Pills = {
|
|
|
13944
13922
|
}
|
|
13945
13923
|
}),
|
|
13946
13924
|
on: {
|
|
13947
|
-
click: (e, el
|
|
13948
|
-
|
|
13925
|
+
click: (e, el) => {
|
|
13926
|
+
el.state.update({ active: parseInt(el.key) });
|
|
13949
13927
|
}
|
|
13950
13928
|
}
|
|
13951
13929
|
},
|
|
@@ -14128,6 +14106,17 @@ var Steps = {
|
|
|
14128
14106
|
childExtend: Step,
|
|
14129
14107
|
$setPropsCollection: ({ props: props6 }) => props6.options
|
|
14130
14108
|
};
|
|
14109
|
+
|
|
14110
|
+
// Chat/index.js
|
|
14111
|
+
var Chat = {
|
|
14112
|
+
text: "chat here"
|
|
14113
|
+
};
|
|
14114
|
+
|
|
14115
|
+
// Card/index.js
|
|
14116
|
+
var Card = {};
|
|
14117
|
+
|
|
14118
|
+
// User/index.js
|
|
14119
|
+
var User = {};
|
|
14131
14120
|
/*! Bundled license information:
|
|
14132
14121
|
|
|
14133
14122
|
moment/moment.js:
|