vueless 0.0.547 → 0.0.548

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": "vueless",
3
- "version": "0.0.547",
3
+ "version": "0.0.548",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
6
6
  "keywords": [
@@ -86,10 +86,11 @@ const currentLocale = computed(() => merge(defaultConfig.i18n, i18nGlobal, props
86
86
 
87
87
  const elementId = props.id || useId();
88
88
 
89
- const { config, inputAttrs, activeInputAttrs, calendarAttrs, wrapperAttrs } = useAttrs(props, {
90
- isTop,
91
- isRight,
92
- });
89
+ const { config, datepickerInputAttrs, datepickerInputActiveAttrs, calendarAttrs, wrapperAttrs } =
90
+ useAttrs(props, {
91
+ isTop,
92
+ isRight,
93
+ });
93
94
 
94
95
  function activate() {
95
96
  isShownCalendar.value = true;
@@ -195,7 +196,7 @@ defineExpose({
195
196
  :size="size"
196
197
  :left-icon="leftIcon"
197
198
  :right-icon="rightIcon"
198
- v-bind="isShownCalendar ? activeInputAttrs : inputAttrs"
199
+ v-bind="isShownCalendar ? datepickerInputActiveAttrs : datepickerInputAttrs"
199
200
  @focus="activate"
200
201
  >
201
202
  <template #left>
@@ -1,7 +1,7 @@
1
1
  export default /*tw*/ {
2
2
  wrapper: "relative",
3
- input: "{UInput}",
4
- activeInput: {
3
+ datepickerInput: "{UInput}",
4
+ datepickerInputActive: {
5
5
  component: "{UInput}",
6
6
  wrapper: "ring-dynamic rounded-dynamic ring-offset-dynamic ring-brand-700/15 border-brand-500 hover:border-brand-500",
7
7
  },
@@ -134,14 +134,14 @@ const {
134
134
  config,
135
135
  wrapperAttrs,
136
136
  calendarAttrs,
137
- inputAttrs,
137
+ datepickerInputAttrs,
138
138
  menuAttrs,
139
139
  buttonWrapperAttrs,
140
140
  buttonAttrs,
141
141
  shiftRangeButtonAttrs,
142
142
  rangeInputWrapperAttrs,
143
143
  rangeInputErrorAttrs,
144
- activeInputAttrs,
144
+ datepickerActiveInputAttrs,
145
145
  rangeInputFirstAttrs,
146
146
  rangeInputLastAttrs,
147
147
  periodRowAttrs,
@@ -570,7 +570,7 @@ function onInputCalendar(value: RangeDate) {
570
570
  readonly
571
571
  :left-icon="leftIcon"
572
572
  :right-icon="rightIcon"
573
- v-bind="isShownMenu ? activeInputAttrs : inputAttrs"
573
+ v-bind="isShownMenu ? datepickerActiveInputAttrs : datepickerInputAttrs"
574
574
  @focus="activate"
575
575
  >
576
576
  <template #left>
@@ -1,7 +1,7 @@
1
1
  export default /*tw*/ {
2
2
  wrapper: "relative",
3
- input: "{UInput}",
4
- activeInput: {
3
+ datepickerInput: "{UInput}",
4
+ datepickerInputActive: {
5
5
  component: "{UInput}",
6
6
  wrapper: {
7
7
  base: "ring-dynamic rounded-dynamic ring-offset-dynamic ring-brand-700/15 border-brand-500 hover:border-brand-500",
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.547",
4
+ "version": "0.0.548",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",