lib/openxml/docx/properties/table_cell_width.rb in openxml-docx-0.9.0 vs lib/openxml/docx/properties/table_cell_width.rb in openxml-docx-0.10.0
- old
+ new
@@ -1,12 +1,14 @@
module OpenXml
module Docx
module Properties
- class TableCellWidth < WidthProperty
+ class TableCellWidth < ComplexProperty
tag :tcW
- attribute :type, expects: :valid_width_type
- attribute :width, expects: :positive_integer, displays_as: :w
+ with_namespace :w do
+ attribute :type, one_of: %i(auto dxa nil pct)
+ attribute :width, expects: :positive_integer, displays_as: :w
+ end
end
end
end
end