@varlet/ui 3.6.1 → 3.6.3

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.
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2022 varlet
3
+ Copyright (c) 2024 varletjs
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -3,5 +3,5 @@ import '../../icon/icon.css'
3
3
  import '../../ripple/ripple.css'
4
4
  import '../../popup/popup.css'
5
5
  import '../actionSheet.css'
6
- import '../ActionSheetSfc.css'
7
6
  import '../ActionItemSfc.css'
7
+ import '../ActionSheetSfc.css'
@@ -1,9 +1,12 @@
1
1
  import Alert from "./Alert.mjs";
2
- import { withInstall } from "../utils/components.mjs";
2
+ import { withInstall, withPropsDefaultsSetter } from "../utils/components.mjs";
3
+ import { props as alertProps } from "./props.mjs";
3
4
  withInstall(Alert);
5
+ withPropsDefaultsSetter(Alert, alertProps);
4
6
  const _AlertComponent = Alert;
5
7
  var stdin_default = Alert;
6
8
  export {
7
9
  _AlertComponent,
10
+ alertProps,
8
11
  stdin_default as default
9
12
  };
package/es/card/props.mjs CHANGED
@@ -31,7 +31,9 @@ const props = {
31
31
  ripple: Boolean,
32
32
  onClick: defineListenerProp(),
33
33
  "onUpdate:floating": defineListenerProp(),
34
- // deprecated
34
+ /**
35
+ * @deprecated use outlined variant instead
36
+ */
35
37
  outline: Boolean
36
38
  };
37
39
  export {
@@ -277,7 +277,7 @@ import './tooltip/style/index.mjs'
277
277
  import './uploader/style/index.mjs'
278
278
  import './watermark/style/index.mjs'
279
279
 
280
- const version = '3.6.1'
280
+ const version = '3.6.3'
281
281
 
282
282
  function install(app) {
283
283
  ActionSheet.install && app.use(ActionSheet)
package/es/index.mjs CHANGED
@@ -184,7 +184,7 @@ export * from './tooltip/index.mjs'
184
184
  export * from './uploader/index.mjs'
185
185
  export * from './watermark/index.mjs'
186
186
 
187
- const version = '3.6.1'
187
+ const version = '3.6.3'
188
188
 
189
189
  function install(app) {
190
190
  ActionSheet.install && app.use(ActionSheet)